21 lines
273 B
Python
21 lines
273 B
Python
import os
|
|
|
|
basedir = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
|
|
class Config:
|
|
@staticmethod
|
|
def init_app(app):
|
|
pass
|
|
|
|
|
|
class DevelopmentConfig(Config):
|
|
DEBUG = True
|
|
|
|
|
|
config = {
|
|
'development': DevelopmentConfig,
|
|
|
|
'default': DevelopmentConfig
|
|
}
|