mirror of
https://codeberg.org/catask-org/catask.git
synced 2025-04-20 05:43:41 -05:00
10 lines
323 B
Python
10 lines
323 B
Python
from pathlib import Path
|
|
|
|
antiSpamFile = 'wordlist.txt'
|
|
blacklistFile = 'word_blacklist.txt'
|
|
configFile = 'config.json'
|
|
faviconDir = Path.cwd() / 'static' / 'icons' / 'favicon'
|
|
appName = 'CatAsk'
|
|
version = '1.5.6'
|
|
# id (identifier) is to be interpreted as described in https://semver.org/#spec-item-9
|
|
version_id = '-alpha'
|