catask/constants.py
2025-03-28 21:12:20 +03:00

23 lines
798 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 = '2.2.1'
# id (identifier) is to be interpreted as described in https://semver.org/#spec-item-9
version_id = '-stable'
repoUrl = "https://codeberg.org/catask-org/catask"
homepageUrl = "https://catask.mystie.dev"
docsUrl = "https://docs.catask.mystie.dev"
social = {
"bskyUrl": "https://bsky.app/profile/catask.mystie.dev",
"fediUrl": "https://icy.maxy.top/@CatAsk"
}