diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2025-04-27 12:01:12 -0600 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2025-04-27 12:01:12 -0600 |
commit | fa745c47d1fc08e149fb827b022dd19bb527092b (patch) | |
tree | cf55cd1ad0dc6dae6bf7c5512a2dbfac75ecf2e9 /server/Makefile | |
parent | 6c0867111148e8aa6766c183d92e1a5c561da361 (diff) |
initial commit
Diffstat (limited to 'server/Makefile')
-rw-r--r-- | server/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/server/Makefile b/server/Makefile index 6709e13..6b9a67c 100644 --- a/server/Makefile +++ b/server/Makefile @@ -1,11 +1,11 @@ .PHONY: run setup -env/bin/activate: - python3 -m venv env - env/bin/pip install --upgrade pip - env/bin/pip install -r requirements.txt +.venv/bin/activate: + python3 -m venv .venv + .venv/bin/pip install --upgrade pip + .venv/bin/pip install -r requirements.txt -setup: env/bin/activate +setup: .venv/bin/activate run: setup - env/bin/uvicorn main:app --reload + .venv/bin/uvicorn main:app --reload |