fix(backend): Update DATABASE_URL to match DB name
Some checks are pending
Deploy Elmeg / deploy (push) Waiting to run

This commit is contained in:
fullsizemalt 2025-12-21 01:02:02 -08:00
parent ec3e327d94
commit 7a066995e8

View file

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