9 lines
313 B
Plaintext
9 lines
313 B
Plaintext
# Copy to .env and adjust. Used by local `start.sh` and Docker Compose.
|
|
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=postgres
|
|
POSTGRES_DB=operation_room
|
|
|
|
# Async SQLAlchemy URL (asyncpg). For local dev against docker-compose.dev.yml:
|
|
DATABASE_URL=postgresql+asyncpg://postgres:postgres@localhost:5432/operation_room
|