forked from digitalcredentials/signing-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
22 lines (20 loc) · 1019 Bytes
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
PORT=4006 # default port is 4006
ENABLE_HTTPS_FOR_DEV=false # ONLY for dev when need https; default is false
# DID seeds for generating signing keys.
# One seed per 'tenant'.
# Add DID SEEDS with the pattern TENANT_SEED_[tenant name]
# For example, the key for a tenant name of ECON101 would be:
# TENANT_SEED_ECON101
# The tenant name can then be specified in the issuing invocation like so:
# http://myhost.org/instance/bio112/credentials/issue
# Set the seed value to 'generate' if you'd like a new seed generated for you
# when the app starts up. The seed will only live in memory and
# will be destroyed on restart
TENANT_SEED_TESTING=z1AoLPRWHSKasPH1unbY1A6ZFF2Pdzzp7D2CkpK6YYYdKTN
TENANT_SEED_RANDOMTESTING=generate
TENANT_SEED_DEFAULT=generate
# see the README for an explanation of logging
LOG_ALL_FILE=logs/all.log
ERROR_LOG_FILE=logs/error.log
CONSOLE_LOG_LEVEL=silly # default is silly, i.e. log everything - see the README for allowed levels
LOG_LEVEL=silly # default is silly