-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.yml_sample
37 lines (37 loc) · 934 Bytes
/
config.yml_sample
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
app:
debug: true
results_per_page: 20
disable_signup: false # set to true to restrict user creation to command line
template_dir: "./templates"
static_dir: "./static"
server:
address: "127.0.0.1:7331"
# e.g. https://mydomain.tld/xy/
# leave blank if you don't have custom base URL
base_url: ""
secure_cookie: true
db:
type: "sqlite"
connection: "./db.sqlite3"
storage:
type: "fs"
smtp:
host: "" # leave it blank to disable sending mails
port: 25
username: ""
password: ""
sender: "Omnom <[email protected]>"
tls: false
tls_allow_insecure: false
send_timeout: 10 # seconds
connection_timeout: 5 # seconds
oauth:
# github:
# client_id: ""
# client_secret: ""
# icon: "fab fa-github"
# google:
# # be sure to set redirect url in google oauth settings to https://youromnom/oauth_redirect_handler?provider=google
# client_id: ""
# client_secret: ""
# icon: "fab fa-google"