14 lines
346 B
Text
14 lines
346 B
Text
|
|
# Copy to .env and fill in values before running
|
||
|
|
POSTGRES_DB=custodian
|
||
|
|
POSTGRES_USER=custodian
|
||
|
|
POSTGRES_PASSWORD=changeme
|
||
|
|
|
||
|
|
DATABASE_URL=postgresql+asyncpg://custodian:changeme@127.0.0.1:5432/custodian
|
||
|
|
|
||
|
|
# pgAdmin (optional, only used with --profile tools)
|
||
|
|
PGADMIN_EMAIL=admin@local.dev
|
||
|
|
PGADMIN_PASSWORD=admin
|
||
|
|
|
||
|
|
# API
|
||
|
|
API_BASE=http://127.0.0.1:8000
|