Add start script for backend server initialization and update .gitignore

This commit is contained in:
2026-01-06 12:30:26 -06:00
parent 84285861cc
commit e06f18ce17
2 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View File

@@ -10,6 +10,7 @@
.env.*
!.env.example
.envrc
.sh
# ===== Python =====
# Byte-compiled / optimized / DLL files

10
start.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
# Exit immediately if a command fails
set -e
# Activate virtual environment
source .venv/bin/activate
# Start the backend
python -m uvicorn server:app --reload --port 8000