Compare commits

..

No commits in common. "f7763199ff8c47cb26ac011ab6e485637eb767f6" and "d520ec4c863720bdd9055e76592b8e4324d01435" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View file

@ -13,5 +13,5 @@ done
echo "✅ Migrations complete. Starting server..." echo "✅ Migrations complete. Starting server..."
# Start the main application with production settings # Start the main application
exec uvicorn main:app --host 0.0.0.0 --port 8000 --root-path /api --proxy-headers --forwarded-allow-ips '*' exec uvicorn main:app --host 0.0.0.0 --port 8000

View file

@ -11,7 +11,7 @@ services:
environment: environment:
- DATABASE_URL=postgresql://elmeg:elmeg_password@db:5432/elmeg - DATABASE_URL=postgresql://elmeg:elmeg_password@db:5432/elmeg
- SECRET_KEY=${SECRET_KEY:-demo-secret-change-in-production} - SECRET_KEY=${SECRET_KEY:-demo-secret-change-in-production}
command: ./start.sh command: uvicorn main:app --host 0.0.0.0 --port 8000 --root-path /api --proxy-headers --forwarded-allow-ips '*'
depends_on: depends_on:
- db - db
restart: unless-stopped restart: unless-stopped