Skip to content

Commit

Permalink
Merge pull request #17 from mobidata-bw/better-env-local-explanations
Browse files Browse the repository at this point in the history
better .env.local explanations
  • Loading branch information
the-infinity authored Sep 13, 2023
2 parents 47b4123 + 0c50da4 commit 54c643d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ LAMASSU_IMAGE=mfdz/lamassu:latest
LAMASSU_PORT=8500
LAMASSU_ADMIN_PORT=9002
LAMASSU_ADMIN_PASSWORD=secret
# NOTE: LAMASSU_BASE_URL should be the host machine's DNS namme / IP address.
# i.e. it must be accessible from inside docker containers, i.e. dagster-pipeline.
# Define this variable e.g. in .env.local with http://my-machines-ip:8500
LAMASSU_BASE_URL=http://lamassu:8080

# postgis variables
Expand Down
11 changes: 11 additions & 0 deletions .env.local.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# A random password for the lamassu admin user. Should be long and should not contain special signs.
LAMASSU_ADMIN_PASSWORD=

# Should be the host machine's DNS namme / IP address. It must be accessible from inside docker containers, i.e. dagster-pipeline.
# Usually the IP of the host docker runs at will be fine: http://my-machines-ip:8500
LAMASSU_BASE_URL=http://10.70.172.11:8500

# A random password which will be used for our central postgresql database. Should be long and should not contain special signs.
IPL_POSTGRES_PASSWORD=

# User and password from Deer
DEER_USER=
DEER_PASSWORD=

# A random password which will be used for the postgresql database which is used by Dagster. Should be long and should not contain special
# signs.
DAGSTER_POSTGRES_PASSWORD=

0 comments on commit 54c643d

Please sign in to comment.