Example .env
This commit is contained in:
parent
212462c607
commit
42b186c716
8
.env.example
Normal file
8
.env.example
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
PORT=8000
|
||||
ADMIN_TOKEN="secret"
|
||||
MAX_WORKERS=1
|
||||
AMARILLO_GENERATOR_IMAGE="git.gerhardt.io/amarillo/amarillo-gtfs-generator"
|
||||
AMARILLO_ENHANCER_IMAGE="git.gerhardt.io/amarillo/amarillo-enhancer"
|
||||
SECRET_KEY=secret2
|
||||
METRICS_USER=user1
|
||||
METRICS_PASSWORD=pw1
|
||||
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
*.env
|
||||
data/**
|
||||
|
|
@ -9,9 +9,9 @@ services:
|
|||
- ADMIN_TOKEN=${ADMIN_TOKEN?}
|
||||
- RIDE2GO_TOKEN=${RIDE2GO_TOKEN-}
|
||||
- GRAPHHOPPER_BASE_URL='https://api.mfdz.de/gh'
|
||||
# - SECRET_KEY=${SECRET_KEY?}
|
||||
# - METRICS_USER=${METRICS_USER?}
|
||||
# - METRICS_PASSWORD=${METRICS_PASSWORD?}
|
||||
- SECRET_KEY=${SECRET_KEY?}
|
||||
- METRICS_USER=${METRICS_USER?}
|
||||
- METRICS_PASSWORD=${METRICS_PASSWORD?}
|
||||
|
||||
- MAX_WORKERS=${MAX_WORKERS}
|
||||
volumes:
|
||||
|
|
|
|||
Loading…
Reference in a new issue