summaryrefslogtreecommitdiffstats
path: root/manage.py
blob: 0a6a57d80b62835744d68befe25267c0b362cc2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- coding: utf-8 -*-

from flask_script import Manager
from app import create_app

# create app
app = create_app()
manager = Manager(app)

# import scripts
from scripts import * 

if __name__ == '__main__':
    manager.run()