b0842c3e63
Use password set by the POSTGRES_PASSWORD variable
21 lines
488 B
Bash
21 lines
488 B
Bash
BASE_URL=yourdomain.com
|
|
# generate one with openssl rand -base64 32
|
|
ROCKET_SECRET_KEY=randomstringhere
|
|
|
|
# Mail settings
|
|
MAIL_SERVER=smtp.example.org
|
|
MAIL_USER=example
|
|
MAIL_PASSWORD=123456
|
|
MAIL_HELO_NAME=example.org
|
|
|
|
# DATABASE SETUP
|
|
POSTGRES_PASSWORD=passw0rd
|
|
POSTGRES_USER=plume
|
|
POSTGRES_DB=plume
|
|
|
|
# you can safely leave those defaults
|
|
DATABASE_URL=postgres://plume:passw0rd@postgres:5432/plume
|
|
MIGRATION_DIRECTORY=migrations/postgres
|
|
USE_HTTPS=1
|
|
ROCKET_ADDRESS=0.0.0.0
|
|
ROCKET_PORT=7878
|