feat: initial commit

This commit is contained in:
2026-03-05 22:12:38 +01:00
commit bce762a783
380 changed files with 51955 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
set -e
echo "Running migrations..."
alembic upgrade head
echo "Seeding templates and admin user..."
python seed.py
echo "Starting API server..."
exec uvicorn app.main:app --host 0.0.0.0 --port 8888 --reload