Initial Login functionality
This commit is contained in:
@@ -7,6 +7,9 @@ class Config(object):
|
||||
DEBUG = False
|
||||
DEVELOPMENT = False
|
||||
SECRET_KEY = '97867c1491bea5ee6a8e8436eb11bf2ba6a69ff53ab1b17ecba450d0f2e572e1'
|
||||
JWT_SECRET_KEY = '60a4ba120437004cfc8fc1cf571150f16d950d31aa7c5a4a2fe7a262d4d24bec'
|
||||
JWT_TOKEN_LOCATION = ['cookies']
|
||||
JWT_COOKIE_SECURE = True
|
||||
|
||||
|
||||
class DevConfig(Config):
|
||||
@@ -15,6 +18,7 @@ class DevConfig(Config):
|
||||
SQLALCHEMY_DATABASE_URI = 'postgresql+pg8000://josako@localhost:5432/eveAI'
|
||||
SQLALCHEMY_BINDS = {'public': 'postgresql+pg8000://josako@localhost:5432/eveAI'}
|
||||
EXPLAIN_TEMPLATE_LOADING = True
|
||||
JWT_COOKIE_SECURE = False
|
||||
|
||||
|
||||
class ProdConfig(Config):
|
||||
|
||||
Reference in New Issue
Block a user