Application Configuration - sitMCella/toggl-trello-kpi GitHub Wiki
The Toggl Trello KPI application makes use of configuration parameters defined in the file configuration/settings.yml
.
Create a file configuration/settings.yml
using the file configuration/settings_template.yml
as template.
General Application Configuration
The file configuration/settings.yml
contains the application log level configuration.
APPLICATION_LOG_LEVEL: "error"
The possible values are "debug", "info", "error", "warn", "dpanic", "panic", and "fatal".
The file configuration/settings.yml
contains also the database configuration.
DATABASE_HOST: "127.0.0.1"
DATABASE_PORT: "5432"
DATABASE_NAME: "toggltrelloapi"
DATABASE_USERNAME: "postgres"
DATABASE_PASSWORD: "postgres"
DATABASE_MAX_OPEN_CONNECTIONS: 80
DATABASE_MAX_IDLE_CONNECTIONS: 40
DATABASE_MAX_LIFETIME_IN_MINUTES: 60
The database is used for storing the data used by the Grafana dashboard.