feat: Add installation and start scripts

This commit is contained in:
2025-09-04 21:29:47 +10:00
parent 58ed636ce3
commit 4c1ea9fb12
2 changed files with 84 additions and 0 deletions

9
start.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env bash
# Find if .venv exists
if [ -d ".venv" ]; then
echo "Virtual environment found. Activating..."
source .venv/bin/activate
fi
python3 server.py