-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #68 from brunoamaral/backoffice
Add missing .env information
- Loading branch information
Showing
2 changed files
with
12 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters