init commit

This commit is contained in:
2025-08-20 21:10:31 +09:00
parent 36a9382cb6
commit 745046c638
31 changed files with 1074 additions and 1 deletions

15
entrypoint.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -euo pipefail
# Export env from .env if present
if [ -f ".env" ]; then
set -a
source ./.env
set +a
fi
# Run migrations
alembic upgrade head
# Start bot
python -m app.main