doker use appuser + health check

This commit is contained in:
dm
2025-08-27 10:53:10 +03:00
parent 2de17b1a8b
commit fad9d6a183
2 changed files with 15 additions and 8 deletions

View File

@@ -88,5 +88,5 @@ async def get_list_of_files(api_key: str = Depends(verify_api_key)):
]
@app.get("/healthchecker")
async def healthchecker(api_key: str = Depends(verify_api_key)):
return {"message": "Howdy :3"}
async def healthchecker():
return {"message": "Howdy, all is fine :3"}