taskcafe/conf/taskcafe.example.toml

26 lines
432 B
TOML
Raw 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 = 'taskcafe@example.com'
password = ''
from = 'no-reply@taskcafe.com'
host = 'localhost'
port = 11500
skip_verify = false