Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -215,7 +215,7 @@ async def email_processing_loop():
|
|
215 |
@app.get("/", response_class=HTMLResponse)
|
216 |
async def home():
|
217 |
global running
|
218 |
-
os.getenv('db')
|
219 |
status = "Running" if running else "Stopped"
|
220 |
return HTMLResponse(content=html_content.replace("{{ status }}", status), status_code=200)
|
221 |
|
|
|
215 |
@app.get("/", response_class=HTMLResponse)
|
216 |
async def home():
|
217 |
global running
|
218 |
+
print(os.getenv('db'))
|
219 |
status = "Running" if running else "Stopped"
|
220 |
return HTMLResponse(content=html_content.replace("{{ status }}", status), status_code=200)
|
221 |
|