minimal requirements, one schema, readme update

This commit is contained in:
2021-06-30 14:46:19 +03:00
parent 4f2f4187fe
commit 378f4b61b1
18 changed files with 389 additions and 456 deletions

View File

@@ -1,4 +1,5 @@
import uvicorn
from settings import PORT
if __name__ == '__main__':
uvicorn.run("main:app", host="0.0.0.0", port=24579, reload=True)
uvicorn.run("main:app", host="0.0.0.0", port=PORT, reload=True)