mirror of
https://github.com/Findus23/lw1.at.git
synced 2024-09-09 04:03:45 +02:00
11 lines
316 B
Python
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"
|