-
Notifications
You must be signed in to change notification settings - Fork 9
/
Settings.yaml
30 lines (30 loc) · 2.24 KB
/
Settings.yaml
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
# Indicate development or production
mode: development
# Indicate the HTTP-accessible domain where the server is hosted
domain: codebuddy.mydomain.com
# Indicate the address of the server where the middle layer is hosted
m_host: 127.0.0.1
# Indicate the number of the port where the front-end web server is hosted
f_port: 8008
# Indicate the number of the port where the middle-layer web server is hosted
m_port: 9798
# Indicate the number of parallel processes that should be used for the front-end server.
f_num_processes: 1
# Indicate the number of parallel processes that should be used for the middle-layer server.
m_num_processes: 2
# Indicate the amount of memory that the front-end server should be allowed to use.
f_memory_gb: 4
# Indicate whether the front-end server should run in the background (yes) and thus continue running when you log out of the server. Otherwise, put no.
f_run_in_background: no
# Indicate whether the middle-layer server should run in the background (yes) and thus continue running when you log out of the server. Otherwise, put no.
m_run_in_background: no
# Indicate a password to be used in development mode. When running the server locally, it's easiest to use a blank password. However, if you deploy a development server for others to test, it is a good idea to require a password when users log in to the server.
dev_password: ""
# Include HTML (typically an <a> tag) that links to a privacy notice for your organization. This link will be placed in the footer.
privacy_notice_html: <a href="https://privacy.byu.edu" target="_blank">Privacy Notice</a>
# Include HTML (typically an <a> tag) that links to a cookie notice for your organization. This link will be placed in the footer.
cookie_information_html: <a href="https://infosec.byu.edu/cookie-prefs" target="_blank">Cookie Preferences</a>
# Indicate the journal mode for the database. Learn more about journal modes here: https://www.sqlite.org/pragma.html. If you want to use LiteStream for backups, you will need to use WAL.
db_journal_mode: "OFF"
# Indicate the hour of the day in 24-hour time (examples: 00 or 01 or 02 ... or 23) when the database should be backed up. On this hour, the log files are also summarized. Backups only occur when db_journal_mode is set to OFF.
backup_hour: 04