From 66536da37d8301e3c5a6d5b7fe9919614087ab98 Mon Sep 17 00:00:00 2001 From: "Juan M. Ley" Date: Sat, 7 Feb 2026 02:32:59 -0600 Subject: [PATCH] added script for enabling venv and adding its stuff --- enable-venv.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 enable-venv.sh 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