Created initial project files

This commit is contained in:
2026-01-11 15:39:45 +00:00
parent ef58aad019
commit 104c7b773f
5 changed files with 37 additions and 0 deletions

17
launch.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
# Copy .env if it doesn't exist
if [ ! -f .env ]; then
cp .env.example src/.env
echo ".env file created from template."
fi
# Setup Virtual Environment
python3 -m venv venv
source venv/bin/activate
# Install dependencies
pip install -r requirements.txt
# Run the app
python src/main.py