mirror of
https://codeberg.org/catask-org/catask.git
synced 2025-04-19 21:33:41 -05:00
16 lines
547 B
Python
16 lines
547 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'
|
|
exportsFile = 'exports.json'
|
|
faviconDir = Path.cwd() / 'static' / 'icons' / 'favicon'
|
|
tempDir = Path.cwd() / 'static' / 'temp'
|
|
exportsDir = Path('static') / 'exports'
|
|
emojiPath = Path.cwd() / 'static' / 'emojis'
|
|
appName = 'CatAsk'
|
|
version = '1.7.1'
|
|
# id (identifier) is to be interpreted as described in https://semver.org/#spec-item-9
|
|
version_id = '-alpha'
|