18 lines
768 B
Bash
18 lines
768 B
Bash
# API account: use an account you own or are authorized to monitor.
|
|
API_BASE_URL=https://iop-dev.strndev.com
|
|
API_USERNAME=replace-me
|
|
API_PASSWORD=replace-me
|
|
# Individual games are captured by polling, so the interval bounds what can be
|
|
# caught: two games on the same title inside one interval yield only the later
|
|
# one. This deployment uses the requested three-minute interval; lower it toward
|
|
# 60s when capturing every quick back-to-back game matters more.
|
|
POLL_SECONDS=180
|
|
|
|
# Use distinct, long random values before exposing any service beyond localhost.
|
|
POSTGRES_DB=play_history
|
|
POSTGRES_USER=play_history
|
|
POSTGRES_PASSWORD=replace-with-a-long-random-password
|
|
GRAFANA_ADMIN_USER=admin
|
|
GRAFANA_ADMIN_PASSWORD=replace-with-a-long-random-password
|
|
GRAFANA_PORT=3000
|