Commit All

This commit is contained in:
2025-10-30 13:33:08 +01:00
commit 3678efed07
31 changed files with 5536 additions and 0 deletions

14
run.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
# Activate the virtual environment if it exists
if [ -d ".venv" ]; then
source .venv/bin/activate
fi
# Run the FastAPI server with uvicorn
echo "Starting Calendar Server..."
echo "Access the calendar at: http://localhost:8000"
echo "Press Ctrl+C to stop the server"
echo ""
uv run uvicorn main:app --host 0.0.0.0 --port 8000 --reload