diff --git a/enable-venv.sh b/enable-venv.sh new file mode 100644 index 0000000..7283f4c --- /dev/null +++ b/enable-venv.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +python3 -m venv .env + +source .env/bin/activate + +pip install uvicorn fastapi pydantic sqlalchemy + +cd $(pwd)/src/ + +python3 main.py \ No newline at end of file