add secret key to prod config
This commit is contained in:
parent
b136ede418
commit
f43e064570
1 changed files with 1 additions and 1 deletions
|
@ -29,6 +29,6 @@ class TestingConfig(BaseConfig):
|
||||||
|
|
||||||
class ProductionConfig(BaseConfig):
|
class ProductionConfig(BaseConfig):
|
||||||
"""Production configuration."""
|
"""Production configuration."""
|
||||||
SECRET_KEY = ''
|
SECRET_KEY = os.getenv('SECRET_KEY')
|
||||||
DEBUG = False
|
DEBUG = False
|
||||||
SQLALCHEMY_DATABASE_URI = 'postgres://mzwaocmnwvesac:d86d256a9e73639d0ac1eba3651f3f5268540e6417b110265fd58398358d1c1b@ec2-174-129-227-51.compute-1.amazonaws.com:5432/d1jbr1uiojpma'
|
SQLALCHEMY_DATABASE_URI = 'postgres://mzwaocmnwvesac:d86d256a9e73639d0ac1eba3651f3f5268540e6417b110265fd58398358d1c1b@ec2-174-129-227-51.compute-1.amazonaws.com:5432/d1jbr1uiojpma'
|
||||||
|
|
Loading…
Reference in a new issue