18 lines
392 B
Python
18 lines
392 B
Python
# _*_ coding: utf-8 _*_
|
|
# @Time :2022/5/26 09:10
|
|
# @Email :508737091@qq.com
|
|
# @Author :qiangyanwen
|
|
# @File :main.py.py
|
|
|
|
import uvicorn
|
|
|
|
from app import create_app
|
|
from config import Debug
|
|
from utils.system import host
|
|
from config import settings
|
|
|
|
app = create_app()
|
|
|
|
if __name__ == '__main__':
|
|
uvicorn.run(app="main:app", host=host, port=settings.PROJECT.PORT, reload=Debug)
|