use the correct variables for datarhei
This commit is contained in:
parent
5fbb0f8101
commit
fd03fa2a0f
2 changed files with 6 additions and 6 deletions
|
@ -26,9 +26,9 @@ logger_content = logging.getLogger('content')
|
||||||
|
|
||||||
# Variables
|
# Variables
|
||||||
core_sync_period = int(os.environ.get('CORE_SYNC_PERIOD', 15))
|
core_sync_period = int(os.environ.get('CORE_SYNC_PERIOD', 15))
|
||||||
core_hostname = os.environ.get('CORE_HOSTNAME', 'stream.example.com')
|
core_hostname = os.environ.get('CORE_API_HOSTNAME', 'stream.example.com')
|
||||||
core_username = os.environ.get('CORE_USERNAME', 'admin')
|
core_username = os.environ.get('CORE_API_AUTH_USERNAME', 'admin')
|
||||||
core_password = os.environ.get('CORE_PASSWORD', 'pass')
|
core_password = os.environ.get('CORE_API_AUTH_PASSWORD', 'pass')
|
||||||
rec_path = "/recordings"
|
rec_path = "/recordings"
|
||||||
enable_delay = 24
|
enable_delay = 24
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
BASE_URL=example.com
|
BASE_URL=example.com
|
||||||
EMAIL=info@example.com
|
EMAIL=info@example.com
|
||||||
CORE_LOG_LEVEL=warn
|
CORE_LOG_LEVEL=warn
|
||||||
CORE_HOSTNAME=stream.example.com
|
CORE_API_HOSTNAME=stream.example.com
|
||||||
CORE_USERNAME=admin
|
CORE_API_AUTH_USERNAME=admin
|
||||||
CORE_PASSWORD=changeme
|
CORE_API_AUTH_PASSWORD=changeme
|
||||||
SCHEDULER_LOG_LEVEL=warn
|
SCHEDULER_LOG_LEVEL=warn
|
||||||
DISCORDBOT_TOKEN=changeme
|
DISCORDBOT_TOKEN=changeme
|
||||||
DISCORDBOT_LIVE_CHANNEL_ID=0
|
DISCORDBOT_LIVE_CHANNEL_ID=0
|
||||||
|
|
Loading…
Add table
Reference in a new issue