Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,7 @@ Create or own app using heroku cli (app name needs to be unique, below will not
- `delete from public."fmdCodeLine"`;
- `delete from public."fmdCustomGraph"`;
- `delete from public."fmdCustomGraphData"`;

## Google Email
- `https://accounts.google.com/b/0/DisplayUnlockCaptcha`
- `https://myaccount.google.com/lesssecureapps`
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ basicauth==0.4.1
certifi==2020.6.20
chardet==3.0.4
click==7.1.2
codecov==2.1.9
codecov
colorama==0.4.3
colorhash==1.0.2
configparser==5.0.0
Expand Down
4 changes: 2 additions & 2 deletions services/psql_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Config(object):
db_uri = env.local.DB_URI
else:
db_uri = env.production.DB_URI
SQLALCHEMY_DATABASE_URI = db_uri
SQLALCHEMY_DATABASE_URI = os.environ.get('DB_URI') or db_uri


class ProductionConfig(Config):
Expand All @@ -32,4 +32,4 @@ class DevelopmentConfig(Config):


class TestingConfig(Config):
TESTING = True
TESTING = True
Loading