Added data download ability
This commit is contained in:
7
backend/main.py
Normal file
7
backend/main.py
Normal 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)
|
||||
Reference in New Issue
Block a user