diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2025-04-27 23:39:18 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2025-04-27 23:39:18 -0600 |
commit | 55ea020271b050106e1330fb24aa2850589ac4a0 (patch) | |
tree | 30cb64d221e4f308c6e6accba3c638aae06c6991 | |
parent | ff3d97af226330a9a4cb3578a7c26903f59120ba (diff) |
makefile commands
-rw-r--r-- | server/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/server/Makefile b/server/Makefile index 2e4c324..f4d56f7 100644 --- a/server/Makefile +++ b/server/Makefile @@ -12,3 +12,12 @@ run: setup prod: setup .venv/bin/uvicorn main:app --host 0.0.0.0 --port 8534 + +db: setup + .venv/bin/python3 create_db.py + +bids: setup + .venv/bin/python3 -m services.process_bids + +data: setup + .venv/bin/python3 -m services.get_data |