This commit is contained in:
2023-05-06 22:09:55 +02:00
parent ffb1df9cdb
commit d8fdd610ea
12 changed files with 450 additions and 448 deletions

View File

@@ -1,5 +1,6 @@
import httpx
response = httpx.get("http://localhost:8080/healthcheck")
print(f"HEALTHCHECK STATUS: {response.status_code}")
exit(0 if response.status_code == 200 else 1)