Build & Deploy / build (push) Successful in 23s
- SECRET_KEY et DATABASE_URL externalisés (Vault -> env), plus de secret en dur - SQLite -> postgres-shared (psycopg2), schéma créé au boot (entrypoint.sh) - Dockerfile + docker-compose (Watchtower) + .gitea/workflows/build.yml Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
6 lines
326 B
Bash
6 lines
326 B
Bash
#!/bin/sh
|
|
set -e
|
|
# Crée les tables si absentes (idempotent). PAS de user de test en prod (contrairement à init_db.py).
|
|
python -c "from database.models import Base; from database.database import engine; Base.metadata.create_all(bind=engine); print('regwatch: schema OK')"
|
|
exec uvicorn api.main:app --host 0.0.0.0 --port 8000
|