asFrants's picture
add new files for docker and fast api
d95cbea
raw history blame
No virus
155 Bytes
import uvicorn
if __name__ == "__main__":
uvicorn.run(
app="main:app",
host="localhost",
port=8000,
reload=True
)