mirror of
https://github.com/LukeMathWalker/zero-to-production.git
synced 2024-11-15 21:21:00 +00:00
14 lines
No EOL
293 B
YAML
14 lines
No EOL
293 B
YAML
application:
|
|
port: 8000
|
|
host: 0.0.0.0
|
|
database:
|
|
host: "localhost"
|
|
port: 5432
|
|
username: "postgres"
|
|
password: "password"
|
|
database_name: "newsletter"
|
|
require_ssl: false
|
|
email_client:
|
|
base_url: "localhost"
|
|
sender_email: "test@gmail.com"
|
|
authorization_token: "my-secret-token" |