41 lines
1.4 KiB
Plaintext
Executable File
41 lines
1.4 KiB
Plaintext
Executable File
############################################
|
|
# pypo - configuration #
|
|
############################################
|
|
|
|
############################################
|
|
# Directories / Hosts #
|
|
# _include_ trailing slash !! #
|
|
############################################
|
|
cache_dir = '/storage/pypo/cache/'
|
|
file_dir = '/storage/pypo/files/'
|
|
tmp_dir = '/var/tmp/obp/'
|
|
|
|
############################################
|
|
# API path & co #
|
|
############################################
|
|
base_url = 'http://test.local.obp.ch/'
|
|
obp_api_key = 'AAA-BBB-CCC-EEE'
|
|
|
|
export_path = 'api/pypo/export_range/' # YYYY-MM-DD-hh-mm will be added in script, exports json
|
|
export_source = 'scheduler' # choose "dayparts" or "scheduler"
|
|
|
|
############################################
|
|
# Liquidsoap settings #
|
|
############################################
|
|
ls_host = '127.0.0.1'
|
|
ls_port = '1234'
|
|
|
|
############################################
|
|
# pypo preferences #
|
|
############################################
|
|
prepare_ahead = 12 #in hours
|
|
cache_for = 12 #how long to hold the cache, in hours
|
|
|
|
poll_interval = 10 # in seconds
|
|
push_interval = 1 # in seconds
|
|
|
|
# 'pre' or 'otf'. 'pre' cues while pplaylist preparation
|
|
# while 'otf' (on the fly) cues while loading into ls
|
|
# (needs the post_processor patch)
|
|
cue_style = 'pre'
|