blob: 3df98e9bd3a52ce1b2145bedc0fdec8e88e7848e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Title/heading to use for the web interface
CYCHE_SITE_NAME="cychedelic"
# Number of lines of text to show per job on the main page
CYCHE_LOG_TAIL_LENGTH=25
# Job content refresh time while system is idle
CYCHE_IDLE_UPDATE=60000 # 1 minute
# Job content refresh time while system is busy
CYCHE_ACTIVE_UPDATE=1000 # 1 second
# Progress indicator animation speed (time per update)
CYCHE_PROGRESS_ANIM_SPEED=1000 # 1 second
# Human-friendly filename template (mind the single-quotes!)
CYCHE_LOG_FILENAME='${job.job}_${abv_hash}_${job.service}.log'
|