-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add SQLite3 driver for peewee as a dependency * Add volumes for both sqlite and postgres * Implement creating DB form APP_DB_URL * Add default sqlite database url
- Loading branch information
1 parent
94f3a87
commit 99ffc8f
Showing
4 changed files
with
15 additions
and
36 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
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,8 +1,4 @@ | ||
export APP_DB_DIALECT="postgresql" | ||
export APP_DB_NAME="whohacks" | ||
export APP_DB_USER="whohacks" | ||
export APP_DB_PASSWORD="S3cret" | ||
export APP_DB_HOST="localhost" | ||
export APP_DB_PORT="5432" | ||
export APP_OAUTH_OPENID="http://sso.hsp.sh/auth/realms/hsp/.well-known/openid-configuration" | ||
env | grep APP_ > .env | ||
export APP_DB_URL="postgresql://whohacks:S3cret@localhost:5432/whohacks" | ||
export OAUTH_OPENID="http://sso.hsp.sh/auth/realms/hsp/.well-known/openid-configuration" | ||
env | grep APP_ > .env | ||
env | grep OUATH_ > .env |
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
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