1
0
Fork 0
mirror of https://github.com/Findus23/lw1.at.git synced 2024-09-09 04:03:45 +02:00
lw1.at/lw1/paths.py
2022-04-26 17:31:08 +02:00

11 lines
316 B
Python

from pathlib import Path
basedir = Path(__file__).parent.parent
templates_dir = basedir / "templates"
content_dir = basedir / "content"
output_dir = basedir / "public"
translations_dir = basedir / "translations"
post_img_dir = output_dir / "img"
cache_dir = basedir / "cache"
cache_file = cache_dir / "cache.yaml"