mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-30 12:14:46 +01:00
17 lines
548 B
Plaintext
17 lines
548 B
Plaintext
# Environment Variable Example File
|
|
# ---
|
|
|
|
# Add internal database credentials here...
|
|
# POSTGRES_HOST = "your-database-host"
|
|
# POSTGRES_PORT = "your-database-port"
|
|
POSTGRES_DB = "your-database-name"
|
|
POSTGRES_USER = "your-database-user"
|
|
POSTGRES_PASSWORD = "your-database-password"
|
|
|
|
# Add mailer credentials here...
|
|
MAILER_FROM = "your-mailer-from-address"
|
|
MAILER_SMTP_ADDR = "your-mailer-smtp"
|
|
MAILER_SMTP_PORT = "your-mailer-smtp-port"
|
|
MAILER_USER = "your-mailer-user"
|
|
MAILER_PASSWORD = "your-mailer-password"
|