-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactored settings.py to pull more variables from env settings
- Loading branch information
James Wallace
authored and
James Wallace
committed
Apr 15, 2020
1 parent
2f1a0bd
commit c9382aa
Showing
9 changed files
with
41 additions
and
37 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
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
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,12 +1,8 @@ | ||
DEBUG=1 | ||
DJANGO_ALLOWED_HOSTS=localhost 127.0.0.1 [::1] web | ||
SQL_ENGINE=django.db.backends.postgresql_psycopg2 | ||
SQL_DATABASE=bartensordb | ||
SQL_USER=bartensoradmin | ||
SQL_PASSWORD=BartensorOSU! | ||
SQL_HOST=db | ||
SQL_PORT=5432 | ||
DATABASE=postgres | ||
SECRET_KEY=development | ||
ALLOWED_HOSTS=localhost 127.0.0.1 | ||
SQL_ENGINE=django.db.backends.sqlite3 | ||
DATABASE=db.sqlite3 | ||
BARTENSOR_EMAIL_USERNAME=[email protected] | ||
BARTENSOR_EMAIL_PASSWORD=iupeqdduwlekqjrj | ||
WATSON_DISCOVERY_API_KEY=Q48Xgoo6dGAAOSNjdUdho8uwprTEbwgXOBUspsEaTDO2 | ||
|
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
DEBUG=0 | ||
SECRET_KEY=production | ||
ALLOWED_HOSTS=bartensor.biz 18.217.199.76 ec2-18-217-199-76.us-east-2.compute.amazonaws.com | ||
SQL_ENGINE=django.db.backends.sqlite3 | ||
DATABASE=db.sqlite3 | ||
BARTENSOR_EMAIL_USERNAME=[email protected] | ||
BARTENSOR_EMAIL_PASSWORD=iupeqdduwlekqjrj | ||
WATSON_DISCOVERY_API_KEY=Q48Xgoo6dGAAOSNjdUdho8uwprTEbwgXOBUspsEaTDO2 | ||
WATSON_SPEECH_TO_TEXT_API_KEY=GUyb9Y0-25JUO7_fZtyLvlDipUAMzROb2vxadUiWJEMX |
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
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