From d20a23b9afdeabe4b5c30cdef2e6af487168533d Mon Sep 17 00:00:00 2001
From: David Trattnig <david.trattnig@o94.at>
Date: Tue, 28 Apr 2020 15:54:18 +0200
Subject: [PATCH] Distinction between dev and prod sample configs.

---
 ...gine.ini => sample-development.engine.ini} |  15 +-
 configuration/sample-production.engine.ini    | 317 ++++++++++++++++++
 2 files changed, 321 insertions(+), 11 deletions(-)
 rename configuration/{sample.engine.ini => sample-development.engine.ini} (98%)
 create mode 100644 configuration/sample-production.engine.ini

diff --git a/configuration/sample.engine.ini b/configuration/sample-development.engine.ini
similarity index 98%
rename from configuration/sample.engine.ini
rename to configuration/sample-development.engine.ini
index 565b8d6a..925f4630 100644
--- a/configuration/sample.engine.ini
+++ b/configuration/sample-development.engine.ini
@@ -1,6 +1,6 @@
 
 ###################
-# engine Settings #
+# Engine Settings #
 ###################
 
 [station]
@@ -12,7 +12,7 @@ station_logo_size=180px
 [database]
 db_user="aura"
 db_name="aura_engine"
-db_pass=""
+db_pass="---SECRET--PASSWORD---"
 db_host="localhost"
 db_charset="utf8"
 
@@ -21,9 +21,6 @@ redis_host="localhost"
 redis_port=6379
 redis_db=0
 
-#[development]
-#use_test_data=False
-
 [monitoring]
 # how often should i check the diskspace. defaults to 600s = 10m
 diskspace_check_interval=20
@@ -32,14 +29,11 @@ diskspace_warning_value=1G
 # under which value should i stop recording. defaults to 200M
 diskspace_critical_value=100M
 
-#[web-ui]
-#web_port=5005
-
 [mail]
 mail_server=""
 mail_server_port="587"
 mail_user="aura@subsquare.at"
-mail_pass=""
+mail_pass="---SECRET--PASSWORD---"
 # if you want to send multiple adminmails, make them space separated
 admin_mail="david@subsquare.at"
 # with from mailadress should be used
@@ -70,7 +64,7 @@ fade_in_time="0.5"
 fade_out_time="2.5"
 
 #######################
-# LiquidSoap Settings #
+# Liquidsoap Settings #
 #######################
 
 # all these settings from here to the bottom require a restart of the liquidsoap server
@@ -97,7 +91,6 @@ logdir="/home/david/Code/aura/engine/logs"
 loglevel="info"
 
 [audiofolder]
-; audiofolder="/var/audio"
 audiofolder="/home/david/Code/aura/tank-store"
 
 [fallback]
diff --git a/configuration/sample-production.engine.ini b/configuration/sample-production.engine.ini
new file mode 100644
index 00000000..e22431e9
--- /dev/null
+++ b/configuration/sample-production.engine.ini
@@ -0,0 +1,317 @@
+
+###################
+# Engine Settings #
+###################
+
+[station]
+station_name="Radio Aura"
+station_logo_url="https://o94.at/themes/custom/radio_orange/logo1.png"
+station_logo_size="180px"
+
+
+[database]
+db_user="aura"
+db_name="aura_engine"
+db_pass="---SECRET--PASSWORD---"
+db_host="localhost"
+db_charset="utf8"
+
+[redis]
+redis_host="localhost"
+redis_port=6379
+redis_db=0
+
+[monitoring]
+# how often should i check the diskspace. defaults to 600s = 10m
+diskspace_check_interval=20
+# under which value should i start sending admin mails. possible values k, M, G, T or no metric prefix. defaults to 2G
+diskspace_warning_value=1G
+# under which value should i stop recording. defaults to 200M
+diskspace_critical_value=100M
+
+[mail]
+mail_server="w00fdabd.kasserver.com"
+mail_server_port="587"
+mail_user="aura@subsquare.at"
+mail_pass="---SECRET--PASSWORD---"
+# if you want to send multiple adminmails, make them space separated
+admin_mail="david@subsquare.at"
+# with from mailadress should be used
+from_mail="monitor@aura.py"
+# The beginning of the subject. With that you can easily apply filter rules using a mail client
+mailsubject_prefix="[Aura Engine]"
+
+[dataurls]
+# The URL to get the Calendar via PV/Steering
+api_calendar_url="http://localhost:8000/api/v1/playout"
+# The URL to get show details via PV/Steering
+api_show_url="http://localhost:8000/api/v1/shows/${ID}/"
+# The URL to get playlist details via Tank
+api_playlist_url="http://localhost:8040/api/v1/shows/${SLUG}/playlists"
+
+# URL and Port of the API endpoints exposed by engine
+exposed_api_url=http://localhost:3333/api/v1/
+api_port=3333
+
+# how often should the calendar be fetched in seconds (This determines the time of the last change before a specific show)
+fetching_frequency=3600
+
+# sets the time how long we have to fade in and out, when we select another mixer input
+# values are in seconds
+# this is solved on engine level because it is kind of tough with liquidsoap
+[fading]
+fade_in_time="0.5"
+fade_out_time="2.5"
+
+#######################
+# Liquidsoap Settings #
+#######################
+
+# all these settings from here to the bottom require a restart of the liquidsoap server
+
+[lqs]
+liquidsoap_path="/home/david/.opam/4.08.0/bin/liquidsoap"
+liquidsoap_working_dir="modules/liquidsoap/"
+
+# Liquidsoap execution delay in seconds; Crucial to keep things in sync
+lqs_delay_offset=1
+
+[user]
+# the user and group under which this software will run
+daemongroup="engineuser"
+daemonuser="engineuser"
+
+[socket]
+socketdir="/opt/aura/engine/modules/liquidsoap"
+
+[logging]
+logdir="/var/log/aura"
+# possible values: debug, info, warning, error, critical
+loglevel="info"
+
+[audiofolder]
+audiofolder="/var/audio"
+
+[fallback]
+# track_sensitive => fallback_folder track sensitivity
+# max_blank => maximum time of blank from source (defaults to 20., seconds, float)
+# min_noise => minimum duration of noise on source to switch back over (defaults to 0, seconds, float)
+# threshold => power in dB under which the stream is considered silent (defaults to -40., float)
+fallback_max_blank="20."
+fallback_min_noise="0."
+fallback_threshold="-50."
+
+# a folder holding music for station-fallbacks
+fallback_music_folder=""
+fallback_show_name="Random Music"
+fallback_show_type="Unmoderated Music"
+fallback_show_host="Magic Shuffle"
+fallback_title_not_available="Title not available"
+
+
+[soundcard]
+# choose your weapon
+# if you are starving for pain in the ass choose alsa
+# if you don't care about latency choose pulseaudio
+# if you want low latency and a bit of experimenting, choose jack
+soundsystem="alsa"
+
+# you can define up to 5 inputs and outputs
+# it is tested with
+#  - ALSA with ONE input and ONE output
+#  - pulseaudio with ONE input and ONE output (should work with multiple ins/outs)
+#  - jack with multiple inputs and outputs
+#
+# boundaries:
+#  - if you use jack, you have to kill liquidsoap. somehow liquidsoap cannot disconnect from jackd when shutting down
+#
+# with alsa you have to write the devicenames like hw:0
+# with pulse and jack => an non empty value means it is used
+# devices with empty string are ignored and not used
+input_device_0=""
+input_device_1=""
+input_device_2=""
+input_device_3=""
+input_device_4=""
+# same same, but different
+output_device_0="default"
+output_device_1=""
+output_device_2=""
+output_device_3=""
+output_device_4=""
+
+# if you are using alsa, you most probably have to tweak these values
+# out of the box you will hear alot of cracklings and artifacts
+
+# alsa_buffer => int
+#alsa_buffer="8192"
+alsa_buffer="16384"
+# alsa_buffer_length => int
+alsa_buffer_length="25"
+# alsa_periods => int
+alsa_periods="0"
+# frame_duration => double
+frame_duration=""
+# frame_size => int
+frame_size=""
+
+#####################
+# Recorder Settings #
+#####################
+
+# you can define up to 5 recorder types.
+# aac, flac, mp3, ogg, opus and wav is supported
+
+[recording]
+# flac example
+# enable this recorder. everything else than 'y' is considered as disabled
+rec_0="n"
+# first set a folder
+rec_0_folder="/var/audio/rec/flac"
+# after how many minutes the recording will be cut
+rec_0_duration="30"
+# file (or encoding-) type
+rec_0_encoding="flac"
+# bitrate (with encoding types without bitrate like flac or wav it is substituted. 32 => very poor quality. 320 => very high quality)
+rec_0_bitrate="128"
+# channels: everything else than 2 is considered as mono
+rec_0_channels="2"
+
+# aac example
+rec_1="n"
+rec_1_folder="/var/audio/rec/aac"
+rec_1_duration="30"
+rec_1_encoding="aac"
+rec_1_bitrate="64"
+rec_1_channels="2"
+
+# mp3 example
+rec_2="n"
+rec_2_folder="/var/audio/rec/mp3"
+rec_2_duration="30"
+rec_2_encoding="mp3"
+rec_2_bitrate="32"
+rec_2_channels="2"
+
+# ogg example
+rec_3="n"
+rec_3_folder="/var/audio/rec/ogg"
+rec_3_duration="30"
+rec_3_encoding="ogg"
+rec_3_bitrate="320"
+rec_3_channels="2"
+
+# opus example
+rec_4="n"
+rec_4_folder="/var/audio/rec/opus"
+rec_4_duration="30"
+rec_4_encoding="opus"
+rec_4_bitrate="32"
+rec_4_channels="2"
+
+# wav example
+#rec_4="n"
+#rec_4_folder="/var/audio/rec/wav"
+#rec_4_duration="30"
+#rec_4_filetype="wav"
+#rec_4_bitrate="320"
+#rec_4_channels="2"
+
+###################
+# Stream Settings #
+###################
+
+# You can define up to outgoing 5 streams
+# aac, flac, mp3, ogg and opus is supported
+
+[stream]
+# defines enabled or not
+stream_0="n"
+# possible values: aac, flac, mp3, ogg, opus (depending on what liquidsoap-plugins you installed)
+stream_0_encoding="aac"
+# bitrate (with encoding types without bitrate like flac or ogg it is substituted. 32 => very poor quality. 320 => very high quality)
+stream_0_bitrate="128"
+# how many channels? everything else than 2 is considered as mono
+stream_0_channels="2"
+# to where we are streaming..?
+stream_0_host="localhost"
+# and which port?
+stream_0_port="8888"
+# the name of the mountpoint
+stream_0_mountpoint="aura-test-0.aac"
+# username
+stream_0_user="source"
+# and the password
+stream_0_password="source"
+# stream url
+stream_0_url="http://www.fro.at"
+# the name of the stream
+stream_0_name="AURA Test Stream 0"
+# the genre of the stream
+stream_0_genre="mixed"
+# description of the stream
+stream_0_description="Test Stream 0"
+
+stream_1="n"
+stream_1_encoding="flac"
+stream_1_bitrate="128"
+stream_1_channels="2"
+
+stream_1_host="localhost"
+stream_1_port="8888"
+stream_1_mountpoint="aura-test-1.flac"
+stream_1_user="source"
+stream_1_password="source"
+
+stream_1_url="http://www.fro.at"
+stream_1_name="AURA Test Stream 1"
+stream_1_genre="mixed"
+stream_1_description="Test Stream 1"
+
+stream_2="n"
+stream_2_encoding="mp3"
+stream_2_bitrate="64"
+stream_2_channels="2"
+
+stream_2_host="localhost"
+stream_2_port="8888"
+stream_2_mountpoint="aura-test-2.mp3"
+stream_2_user="source"
+stream_2_password="source"
+
+stream_2_url="http://www.fro.at"
+stream_2_name="AURA Test Stream 2"
+stream_2_genre="mixed"
+stream_2_description="Test Stream 2"
+
+stream_3="n"
+stream_3_encoding="ogg"
+stream_3_bitrate="64"
+stream_3_channels="2"
+
+stream_3_host="localhost"
+stream_3_port="8888"
+stream_3_mountpoint="aura-test-3.ogg"
+stream_3_user="source"
+stream_3_password="source"
+
+stream_3_url="http://www.fro.at"
+stream_3_name="AURA Test Stream 3"
+stream_3_genre="mixed"
+stream_3_description="Test Stream 3"
+
+stream_4="n"
+stream_4_encoding="opus"
+stream_4_bitrate="64"
+stream_4_channels="2"
+
+stream_4_host="localhost"
+stream_4_port="8888"
+stream_4_mountpoint="aura-test-4.opus"
+stream_4_user="source"
+stream_4_password="source"
+
+stream_4_url="http://www.fro.at"
+stream_4_name="AURA Test Stream 3"
+stream_4_genre="mixed"
+stream_4_description="Test Stream 3"
-- 
GitLab