catask/constants.py
2024-10-19 23:56:06 +03:00

13 lines
437 B
Python

from pathlib import Path
antiSpamFile = 'wordlist.txt'
blacklistFile = 'word_blacklist.txt'
# reserved for 1.7.0 or later
# ipBlacklistFile = 'ip_blacklist.txt'
configFile = 'config.json'
faviconDir = Path.cwd() / 'static' / 'icons' / 'favicon'
emojiPath = Path.cwd() / 'static' / 'emojis'
appName = 'CatAsk'
version = '1.6.0'
# id (identifier) is to be interpreted as described in https://semver.org/#spec-item-9
version_id = '-alpha'