Added data download ability

This commit is contained in:
2023-02-19 21:10:00 +00:00
parent 48f080de7c
commit c850726f91
64 changed files with 12734 additions and 2 deletions

7
backend/main.py Normal file
View File

@@ -0,0 +1,7 @@
import uvicorn
from src.app import app
if __name__ == "__main__":
# Run the app with reload and pass app as string
uvicorn.run("main:app", host="0.0.0.0", port=8000, reload=True)