blob: 32e20398358c633cd2b36ff4f112787116c2091b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
[general]
# Your domain goes here. If there is a port it should be 'domain.com:port', but
# otherwise just 'domain.com'.
domain = "localhost:3000"
port = "3000"
email = "contact@example.com"
site_name = "Gathio"
is_federated = true
# Events will be deleted this many days after they have ended. Set to 0 to
# disable automatic deletion (old events will never be deleted).
delete_after_days = 7
# If left blank, this defaults to
# https://yourdomain.com/images/gathio-email-logo.gif. Set a full URL here to
# change it to your own logo (or just change the file itself).
email_logo_url = ""
# Show a Ko-Fi box to donate money to Raphael (Gathio's creator) on the front
# page.
show_kofi = false
# Show a list of events and groups on the front page which have been marked as
# 'Display this event/group on the public event/group list'.
show_public_event_list = false
# Which mail service to use to send emails to hosts and attendees. Options are
# 'nodemailer', 'sendgrid', or 'none'. Configure settings for this mail
# service below.
mail_service = "none"
# An array of email addresses which are permitted to create events. If this is
# empty, anyone can create events.
# For example:
# creator_email_addresses = ["test@test.com", "admin@test.com"]
creator_email_addresses = []
[database]
# Set up for a locally running MongoDB connection. Change this to
# 'mongodb://mongo:27017/gathio' for a Dockerised connection.
mongodb_url = "mongodb://localhost:27017/gathio"
[nodemailer]
smtp_server = ""
smtp_port = ""
smtp_username = ""
smtp_password = ""
[sendgrid]
api_key = ""
# Links to static pages (for example a privacy policy) or an external community page,
# which will be displayed in the footer.
# If paths begin with a slash, they are treated as internal and will open the specified
# Markdown or text file. If they are absolute (begin with https://), they will simply
# link to the specified URL.
# [[static_pages]]
# title = "Privacy Policy"
# path = "/privacy"
# filename = "privacy-policy.md"
# [[static_pages]]
# title = "External Link"
# path = "https://example.com"
|