Added start script

This commit is contained in:
2026-07-25 20:54:45 +02:00
parent 58be310d63
commit 547564eac8
Executable
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
set -e
# Change to the directory containing this script
cd "$(dirname "$0")"
# Activate the virtual environment
source bin/activate
# Start the FastAPI application
exec uvicorn main:app \
--host 0.0.0.0 \
--port 8000