Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -31,6 +31,6 @@ def run_app():
|
|
| 31 |
def startup_event():
|
| 32 |
threading.Thread(target=run_app).start()
|
| 33 |
|
| 34 |
-
@app.
|
| 35 |
def home():
|
| 36 |
return {"status": "Repo cloned, requirements installed, start script running 🚀"}
|
|
|
|
| 31 |
def startup_event():
|
| 32 |
threading.Thread(target=run_app).start()
|
| 33 |
|
| 34 |
+
@app.api_route("/", methods=["GET", "HEAD"])
|
| 35 |
def home():
|
| 36 |
return {"status": "Repo cloned, requirements installed, start script running 🚀"}
|