blob: 948c15c2bcb2346dd189ce759b3cd70afcdcdeac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# the port the http server should use
# TRAGGO_PORT=3030
# default username and password
# TRAGGO_DEFAULT_USER_NAME=admin
# TRAGGO_DEFAULT_USER_PASS=admin
# bcrypt password strength (higher = more secure but also slower)
# TRAGGO_PASS_STRENGTH=10
# how verbose traggo/server should log (must be one of: debug, info, warn, error, fatal, panic)
# TRAGGO_LOG_LEVEL=info
# the database dialect (must be one of: sqlite3)
# TRAGGO_DATABASE_DIALECT=sqlite3
# the database connection string, differs depending on the dialect
# sqlite3: path/to/database.db
# TRAGGO_DATABASE_CONNECTION=/var/lib/traggo/traggo.db
|