Skip to content

Commit

Permalink
updated config.py - modified SQLALCHEMY_DATABASE_URI to DATABASE_URL
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhishekPednekar84 committed Nov 5, 2019
1 parent 52a064d commit 2704543
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

class Config:
SECRET_KEY = os.getenv("SECRET_KEY")
SQLALCHEMY_DATABASE_URI = os.getenv("SQLALCHEMY_DATABASE_URI")
SQLALCHEMY_DATABASE_URI = os.getenv("DATABASE_URL")
SQLALCHEMY_TRACK_MODIFICATIONS = False
RECAPTCHA_PUBLIC_KEY = os.getenv("RECAPTCHA_PUBLIC_KEY")
RECAPTCHA_PRIVATE_KEY = os.getenv("RECAPTCHA_PRIVATE_KEY")
Expand Down

0 comments on commit 2704543

Please sign in to comment.