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
284 B
13 lines
284 B
1 year ago
|
import uvicorn
|
||
7 months ago
|
from server import app, AppConfig # noqa: F401
|
||
1 year ago
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
1 year ago
|
uvicorn.run(
|
||
|
app='app:app',
|
||
|
host=AppConfig.app_host,
|
||
|
port=AppConfig.app_port,
|
||
|
root_path=AppConfig.app_root_path,
|
||
7 months ago
|
reload=AppConfig.app_reload,
|
||
1 year ago
|
)
|