added OpenID Connect support
This commit is contained in:
@@ -6,6 +6,11 @@ basedir = os.path.abspath(os.path.dirname(__file__))
|
||||
|
||||
|
||||
class Config():
|
||||
SERVER_NAME = "ubkaps154.ubka.uni-karlsruhe.de:5443"
|
||||
#SERVER_NAME = "localhost.dev"
|
||||
#SERVER_NAME = "localhost:5443"
|
||||
PREFERRED_URL_SCHEME = 'https'
|
||||
|
||||
TEMPLATE_AUTO_RELOAD = True
|
||||
|
||||
SQLALCHEMY_DATABASE_URI = 'sqlite:///' + os.path.join(basedir, 'app.db')
|
||||
@@ -69,6 +74,8 @@ class ProductionConfig(Config):
|
||||
|
||||
class DevelopmentConfig(Config):
|
||||
SQLALCHEMY_DATABASE_URI = 'sqlite:///' + os.path.join(basedir, 'app.db_debug')
|
||||
SERVER_NAME = "ubkaps154.ubka.uni-karlsruhe.de"
|
||||
PORT = 5443
|
||||
DEBUG = True
|
||||
|
||||
class TestingConfig(Config):
|
||||
|
||||
Reference in New Issue
Block a user