22 lines
415 B
Python
22 lines
415 B
Python
|
import sys
|
||
|
import os.path
|
||
|
from flask import Flask
|
||
|
|
||
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'src'))
|
||
|
from database.mongodb import initialize_db
|
||
|
from routes import blueprint_api
|
||
|
|
||
|
|
||
|
app = Flask(__name__)
|
||
|
app.config.from_pyfile("settings/dev.py")
|
||
|
|
||
|
initialize_db(app)
|
||
|
|
||
|
# 注册蓝图
|
||
|
app.register_blueprint(blueprint_api)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
app.run(host='0.0.0.0', port=5001, debug=True)
|
||
|
|