Skip to content

Commit

Permalink
Merge pull request #68 from brunoamaral/backoffice
Browse files Browse the repository at this point in the history
Add missing .env information
  • Loading branch information
brunoamaral authored Mar 6, 2022
2 parents 6c47c4c + 309b178 commit 61fe62b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
21 changes: 10 additions & 11 deletions example.env
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
DOMAIN_NAME='http://gregory-ms.com'
METABASE_SITE_URL='https://metabase.gregory-ms.com/'
DOMAIN_NAME='http://DOMAIN.COM'
METABASE_SITE_URL='https://metabase.DOMAIN.COM/'
METABASE_SECRET_KEY=''
GREGORY_DIR="/home/gregory/gregory"
## If you are running locally from docker-compose.yaml, this is http://localhost:18080/
SERVER="https://api.gregory-ms.com/"
WEBSITE_PATH="/var/www/gregory-ms.com/"
POSTGRES_PASSWORD="Laurie307!"
POSTGRES_USER="gregory"
POSTGRES_DB="gregorybackoffice"
DB_HOST="db"
GREGORY_DIR="<where you cloned the repository>/"
SERVER="https://api.DOMAIN.COM/"
WEBSITE_PATH="<where you cloned the repository>/public"
POSTGRES_PASSWORD=PICK-A-PASSWORD
POSTGRES_USER=PICK-A-USERNAME
POSTGRES_DB="PICK-A-DATABASE-NAME"
DB_HOST="db" # Must match the docker-compose.yaml service name. This is the default.
# you should set this manually https://docs.djangoproject.com/en/4.0/ref/settings/#secret-key
SECRET_KEY=''
SECRET_KEY='Yeah, well, you know, that's just, like, your DJANGO SECRET_KEY, man'
4 changes: 2 additions & 2 deletions metabase/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ services:
depends_on:
- db
networks:
- postgres-network
- traefik_proxy
networks:
postgres-network:
traefik_proxy:
driver: bridge

0 comments on commit 61fe62b

Please sign in to comment.