-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathexample_config.json
More file actions
23 lines (23 loc) · 1.43 KB
/
example_config.json
File metadata and controls
23 lines (23 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"info": "This is the example config file for the bot. All the info_<name> are not used and just comments. The bot will use the info in the <name> field of the config.json. Feel free to remove all the _info values.",
"dbtype": "postgresql+asyncpg",
"info_dbtype": "The type of database to use. Active support for postgresql. Support for SQLite+aiosqlite will be provided on a least-effort basis and may be removed at any time.",
"dbhost": "localhost",
"info_dbhost": "The host of the database.",
"dbport": 5432,
"info_dbport": "The port of the database.",
"dbname": "bot",
"info_dbname": "The name of the database.",
"dbuser": "bot",
"info_dbuser": "The username for the database.",
"dbpass": "bot",
"info_dbpass": "The password for the database.",
"dev_guild_id": 478114566509821953,
"info_dev_guild_id": "The id of a guild where you can use the override commands. This is required for the bot to work.",
"https_port": 443,
"info_https_port": "The port to run the https server on. This is required for the API to work. Otherwise optional.",
"ssl_cert": "/etc/letsencrypt/live/ticketsplus.xyz/fullchain.pem",
"info_ssl_cert": "The path to the ssl certificate. This is required for the API to work. Otherwise optional.",
"auth_token": "thequickbrownfoxjumpedoverthelazydog",
"info_auth_token": "The token to use for the API. Please set this to something else. This is required for the API to work. Otherwise optional."
}