-
-
Save geoHeil/89f11c6f735f65f0b7306a086881e60a to your computer and use it in GitHub Desktop.
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
EXOGRAPH_DB_USER=<<dummy>>_user | |
EXOGRAPH_DB_PASSWORD=<<dummy>>_password | |
EXOGRAPH_DB=<<dummy>>_db | |
EXO_POSTGRES_URL=postgresql://$EXOGRAPH_DB_USER:$EXOGRAPH_DB_PASSWORD@localhost:5432/$EXOGRAPH_DB | |
EXO_CORS_DOMAINS="*" | |
# Use `openssl rand -base64 32` to generate a key | |
EXO_JWT_SECRET=<<some_secret>> |
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
services: | |
database: | |
image: postgres:17.0-alpine3.20 | |
environment: | |
POSTGRES_USER: ${EXOGRAPH_DB_USER} | |
POSTGRES_PASSWORD: ${EXOGRAPH_DB_PASSWORD} | |
POSTGRES_DB: ${EXOGRAPH_DB} | |
ports: | |
- "5432:5432" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment