forked from SneakyBastardSword/SantaBot
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCONFIG.py
More file actions
21 lines (18 loc) · 692 Bytes
/
CONFIG.py
File metadata and controls
21 lines (18 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import os
import pathlib
discord_token = "YOUR_TOKEN_HERE"
client_id = "YOUR_CLIENT_ID"
prefix = "YOUR_PREFIX_HERE"
bot_folder = "YOUR_STORAGE_FOLDER_NAME_HERE"
cfg_name = "botdata.cfg"
sqlite_name = "santabotdb.sqlite"
dbg_name = "debug.log"
role_channel = -1
min_budget = 10
max_budget = 20
###############################################
### DO NOT CHANGE BELOW ###
###############################################
cfg_path = os.path.join(str(pathlib.Path(__file__).parent), bot_folder, cfg_name)
sqlite_path = os.path.join(str(pathlib.Path(__file__).parent), bot_folder, sqlite_name)
dbg_path = os.path.join(str(pathlib.Path(__file__).parent), bot_folder, dbg_name)