Skip to content

Commit

Permalink
chore: update config example to reflect database config
Browse files Browse the repository at this point in the history
  • Loading branch information
freak12techno committed Jul 15, 2023
1 parent ac729af commit 5e61569
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion config.example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ json = false

# Database configuration
[database]
# Where the database will be stored. Will be created if not exists.
# Type of the database. Currently supported DB types are: postgres, sqlite.
type = "sqlite"
# Where the database will be stored.
# If it's a PostgreSQL database, a connection string is expected (like postgres://user:password@host:port/database)
# If it a SQLite database, a path to the file storing a database is expected.
path = "database.sqlite"

# Prometheus metrics configuration
Expand Down

0 comments on commit 5e61569

Please sign in to comment.