コード例 #1
0
ファイル: wsgi.py プロジェクト: galan-xc/Flask-Server-Panel
#!/usr/bin/env python3
from serverpanel import create_app

application = create_app('config')

コード例 #2
0
    def create_app(self):
        app = create_app('config')
        app.config['DEBUG'] = False

        return app
コード例 #3
0
ファイル: tests.py プロジェクト: sepro/Flask-Server-Panel
    def create_app(self):
        app = create_app('config')
        app.config['DEBUG'] = False

        return app
コード例 #4
0
#!/usr/bin/env python3
from serverpanel import create_app

app = create_app('config')

app.run()