Template
14 lines
368 B
Bash
14 lines
368 B
Bash
# Panel
|
|
APP_PORT=5000
|
|
SECRET_KEY=change-me-to-a-long-random-string
|
|
|
|
# PostgreSQL 17
|
|
POSTGRES_USER=amnezia
|
|
POSTGRES_PASSWORD=amnezia
|
|
POSTGRES_DB=amnezia_panel
|
|
POSTGRES_PORT=5432
|
|
|
|
# Used by the panel process (local run or Docker)
|
|
# Docker Compose sets this automatically to point at the db service.
|
|
DATABASE_URL=postgresql://amnezia:amnezia@localhost:5432/amnezia_panel
|