blob: b8c416c66286805faa837acc67e104b4fcdc4d49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
static-dir: "_env:STATIC_DIR:static"
approot: "_env:APPROOT:"
host: "_env:HOST:*" # any IPv4 host
port: "_env:PORT:3000"
ip-from-header: "_env:IP_FROM_HEADER:false"
# Optional values with the following production defaults.
# In development, they default to the inverse.
#
# detailed-logging: false
# should-log-all: false
# reload-templates: false
thermoprint-url: "_env:TPRINT_BASEURL:http://localhost:3000"
database:
user: "_env:PGUSER:bar"
password: "_env:PGPASS:bar"
host: "_env:PGHOST:localhost"
port: "_env:PGPORT:5432"
database: "_env:PGDATABASE:bar"
poolsize: "_env:PGPOOLSIZE:10"
|