34 lines
956 B
Bash
Executable File
34 lines
956 B
Bash
Executable File
# Docker compose config file
|
|
# PostgreSQL settings
|
|
DB_USER=admin
|
|
DB_PASSWORD=1234
|
|
DB_HOST=pagerino_db
|
|
DB_NAME=pager_data
|
|
|
|
# App server specific settings
|
|
# === Chirpstack API
|
|
CHIRP_API_KEY=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJjaGlycHN0YWNrIiwiaXNzIjoiY2hpcnBzdGFjayIsInN1YiI6IjI3YzI5Y2M2LTdjMTUtNDI5Yy1iMjBmLTczNzliZWYzYTI1ZCIsInR5cCI6ImtleSJ9.RsMPIGgPaGluBllRz0Ma_EthxUj3xM9pTPy_uUEAbvk
|
|
|
|
# === MQTT broker settings
|
|
MQTT_ADDRESS=ssl://mosquitto:8883
|
|
MQTT_CLIENT_ID=app-server
|
|
MQTT_QOS=0
|
|
# This App's ID in Chirpstack
|
|
# + matches all IDs
|
|
# # matches all IDs and all(!) subtopics
|
|
APP_ID=d6ccd2ad-0cf7-46ab-8618-7a5a14b8676d
|
|
|
|
# Enviroment variables that will be available for every application
|
|
|
|
# General version of the system
|
|
VERSION=0.1
|
|
|
|
# Optional prefix for logging
|
|
LOG_PREFIX=[Pagerino]
|
|
|
|
# Main app container name
|
|
SERVER_NAME=pagerino-app
|
|
SERVER_API_PORT=50222
|
|
|
|
# General preferred connection timeout
|
|
TIMEOUT=3s |