Fix path issue
This commit is contained in:
parent
47312b04d4
commit
1ab9824e95
6
main.py
6
main.py
|
@ -10,9 +10,9 @@ from os import getenv
|
|||
# List of errors ZNC can give us
|
||||
ZNCErrors = ["Error:", "Unable to load", "does not exist", "doesn't exist"]
|
||||
|
||||
configPath = getenv("THRESHOLD_CONFIG_DIR", "conf/live/")
|
||||
templateConfigPath = getenv("THRESHOLD_TEMPLATE_DIR", "conf/templates/")
|
||||
certPath = getenv("THRESHOLD_CERT_DIR", "conf/cert/")
|
||||
configPath = "conf/live/"
|
||||
templateConfigPath = "conf/templates/"
|
||||
certPath = "conf/cert/"
|
||||
|
||||
filemap = {
|
||||
# JSON configs
|
||||
|
|
Loading…
Reference in New Issue