mirror of
https://github.com/kristoferssolo/zero2prod.git
synced 2025-10-21 20:10:40 +00:00
16 lines
276 B
TOML
16 lines
276 B
TOML
[application]
|
|
port = 8000
|
|
|
|
[database]
|
|
host = "127.0.0.1"
|
|
port = 5432
|
|
username = "postgres"
|
|
password = "password"
|
|
database_name = "newsletter"
|
|
|
|
[email_client]
|
|
base_url = "localhost"
|
|
sender_email = "test@gmail.com"
|
|
auth_token = "super-secret-token"
|
|
timeout_milliseconds = 10000
|