Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
engine
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AURA
engine
Commits
934cb313
Commit
934cb313
authored
2 years ago
by
David Trattnig
Browse files
Options
Downloads
Patches
Plain Diff
refact: expose more env vars
parent
1a06ac34
No related branches found
No related tags found
No related merge requests found
Pipeline
#2762
passed
2 years ago
Stage: test
Stage: release
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
config/sample.engine.docker.ini
+7
-7
7 additions, 7 deletions
config/sample.engine.docker.ini
sample.docker.env
+22
-8
22 additions, 8 deletions
sample.docker.env
with
29 additions
and
15 deletions
config/sample.engine.docker.ini
+
7
−
7
View file @
934cb313
...
...
@@ -8,7 +8,7 @@ socket_dir="/srv/socket"
# Directory where the log file resides
log_dir
=
"logs"
# Possible values: debug, info, warning, error, critical
log_level
=
"
info
"
log_level
=
"
${AURA_ENGINE_LOG_LEVEL}
"
# Details for the Station Fallback
fallback_show_name
=
"${AURA_ENGINE_FALLBACK_SHOW_NAME}"
fallback_show_id
=
"${AURA_ENGINE_FALLBACK_SHOW_ID}"
...
...
@@ -33,11 +33,11 @@ from_mail="monitoring@aura.radio"
mailsubject_prefix
=
"[AURA Engine]"
# default: [AURA Engine]
# Seconds how often the vitality of Engine Core should be checked (default=1)
heartbeat_frequency
=
1
heartbeat_frequency
=
"${AURA_ENGINE_HEARTBEAT_FREQUENCY}"
# Host where heartbeat is sent to (disabled if empty string)
heartbeat_server
=
""
heartbeat_server
=
"
${AURA_ENGINE_HEARTBEAT_SERVER}
"
# Some UDP port
heartbeat_port
=
43334
heartbeat_port
=
"${AURA_ENGINE_HEARTBEAT_SERVER_PORT}"
[api]
## STEERING ##
...
...
@@ -100,6 +100,6 @@ preload_offset=15
input_stream_retry_delay
=
1
input_stream_max_retries
=
10
input_stream_buffer
=
3.0
#
How long we have to fade in and out,
when
we
select another mixer input (seconds)
)
fade_in_time
=
"
1.5
"
fade_out_time
=
"
1.5
"
#
Fade duration
when select
ing
another mixer input (seconds)
fade_in_time
=
"
${AURA_ENGINE_FADE_IN_TIME}
"
fade_out_time
=
"
${AURA_ENGINE_FADE_OUT_TIME}
"
This diff is collapsed.
Click to expand it.
sample.docker.env
+
22
−
8
View file @
934cb313
TZ=Europe/Vienna
# Engine
AURA_ENGINE_FALLBACK_SHOW_NAME=Random Music
AURA_ENGINE_FALLBACK_SHOW_ID=-1
# Possible values: debug, info, warning, error, critical
AURA_ENGINE_LOG_LEVEL=info
# Database for caching scheduling data
AURA_ENGINE_DB_HOST=172.17.0.1
AURA_ENGINE_DB_NAME=aura_engine
AURA_ENGINE_DB_USER=aura_engine
AURA_ENGINE_DB_PASS=1234
AURA_ENGINE_LATENCY_OFFSET=0.5
AURA_ENGINE_API_BASE_URL=http://172.17.0.1:8008/
# Steering
# API
AURA_ENGINE_API_BASE_URL=http://172.17.0.1:8008/
AURA_STEERING_BASE_URL=http://172.17.0.1:8000/
# Tank
AURA_TANK_BASE_URL=http://172.17.0.1:8040/
AURA_TANK_ENGINE_USER=engine
AURA_TANK_ENGINE_PASSWORD=rather-secret
# Details for the Station Fallback i.e. the default show when nothing is scheduled
AURA_ENGINE_FALLBACK_SHOW_NAME=Random Music
AURA_ENGINE_FALLBACK_SHOW_ID=-1
# Offset in seconds how long it takes for Liquidsoap to actually execute a scheduler command; Crucial to keep things in sync
AURA_ENGINE_LATENCY_OFFSET=0.5
# Fade duration when selecting another mixer input (seconds)
AURA_ENGINE_FADE_IN_TIME=1.5
AURA_ENGINE_FADE_OUT_TIME=1.5
# Host and UDP port where heartbeat is sent to (disabled if empty string)
# Seconds how often the vitality of Engine Core should be checked (default=1)
AURA_ENGINE_HEARTBEAT_SERVER=
AURA_ENGINE_HEARTBEAT_SERVER_PORT=43334
AURA_ENGINE_HEARTBEAT_FREQUENCY=1
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment