added script for enabling venv and adding its stuff

This commit is contained in:
2026-02-07 02:32:59 -06:00
parent ea4b66d8ef
commit 66536da37d

11
enable-venv.sh Normal file
View File

@@ -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