mirror of
https://github.com/Sheldan/Sissi.git
synced 2026-01-24 17:45:32 +00:00
33 lines
959 B
Bash
33 lines
959 B
Bash
COMPOSE_PROJECT_NAME=sissi
|
|
# database configuration
|
|
DATABASE_HOST=database
|
|
DATABASE_PORT=5432
|
|
DATABASE_USER=abstracto
|
|
DATABASE_NAME=abstracto
|
|
DATABASE_PASSWORD=abstracto
|
|
GRAFANA_DATABASE_PASSWORD=grafana
|
|
GRAFANA_DATABASE_USER=grafana
|
|
# deployment configuration, whether or not the container should execute the parts on startup
|
|
EXECUTE_DEPLOYMENT=true
|
|
EXECUTE_LIQUIBASE=true
|
|
EXECUTE_TEMPLATES=true
|
|
# whether or not remote debug should be enabled on the application
|
|
REMOTE_DEBUG=false
|
|
DEBUG_PORT=5005
|
|
TOMCAT_PORT=8080
|
|
# authentication for actuator endpoints
|
|
REST_USER_NAME=abstracto
|
|
REST_PASSWORD=password
|
|
# port grafana will be reachable
|
|
GRAFANA_PORT=3000
|
|
# port prometheus will be reachable
|
|
LOKI_PORT=3100
|
|
PROMETHEUS_PORT=9090
|
|
# port pg admin will be reachable
|
|
PGADMIN_PORT=5050
|
|
# default authentication for pg admin
|
|
PGADMIN_DEFAULT_EMAIL=sheldan@sheldan.dev
|
|
PGADMIN_DEFAULT_PASSWORD=admin
|
|
TOKEN=<INSERT TOKEN>
|
|
YOUTUBE_API_KEY=<INSERT KEY>
|
|
SISSI_VERSION=1.3.5 |