blob: f6332bd41c76b46e73a677ab84235bc01a9f530a (
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:*4" # 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:"
host: "_env:PGHOST:"
port: "_env:PGPORT:5432"
database: "_env:PGDATABASE:bar"
poolsize: "_env:PGPOOLSIZE:10"
|