mirror of
https://github.com/Redume/Kekkai-web.git
synced 2024-11-21 07:46:24 +03:00
сделал uvicorn run
This commit is contained in:
parent
6051cc26d8
commit
e26daac0dc
1 changed files with 4 additions and 0 deletions
4
main.py
4
main.py
|
@ -1,3 +1,4 @@
|
|||
import uvicorn
|
||||
from fastapi.staticfiles import StaticFiles
|
||||
from starlette.responses import FileResponse
|
||||
from fastapi import FastAPI
|
||||
|
@ -12,3 +13,6 @@ app.mount('/static/', StaticFiles(directory='./src/web/static/'))
|
|||
@app.exception_handler(404)
|
||||
async def not_found(req, __):
|
||||
return FileResponse('./src/web/errors/404.html')
|
||||
|
||||
if __name__ == '__main__':
|
||||
uvicorn.run(app, host='0.0.0.0', port=9000)
|
||||
|
|
Loading…
Add table
Reference in a new issue