taskcafe/conf/taskcafe.example.toml

25 lines
425 B
TOML
Raw Permalink Normal View History

[server]
hostname = '0.0.0.0:3333'
2020-07-16 01:20:08 +02:00
[email_notifications]
enabled = true
display_name = "No Reply"
from_address = "example.com"
[storage]
storage_system = 'local_storage'
upload_dir_path = 'uploads'
[database]
host = 'postgres'
2020-08-07 03:50:35 +02:00
name = 'taskcafe'
user = 'taskcafe'
password = 'taskcafe_test'
2020-07-16 01:20:08 +02:00
[smtp]
username = 'admin@example.com'
password = 'example'
server = 'mail.example.com'
port = 465
connection_security = 'STARTTLS'