- use working dir for storing files BREAKING CHANGE: the playout working directory changed from '/var/tmp/airtime/pypo/' to '/var/lib/libretime/playout' when running with systemd and the current directory by default.
5 lines
100 B
Python
5 lines
100 B
Python
from pathlib import Path
|
|
|
|
CACHE_DIR = Path.cwd() / "scheduler"
|
|
RECORD_DIR = Path.cwd() / "recorder"
|