You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
305 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# myapp.py
from app import create_app, LogService
from utils import response
app = create_app()
#项目入口
if __name__ == "__main__":
#服务端运行在哪个ip地址上的哪个端口是否开启调试这里是本机上的5000端口
app.run(host="127.0.0.1", port=5000, debug=True)