Rewrite to rust

This commit is contained in:
2023-08-09 01:33:30 +02:00
parent 1d1cd63e7b
commit bbaa343547
54 changed files with 12525 additions and 2917 deletions

View File

@@ -1,6 +0,0 @@
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)

View File

@@ -1,7 +0,0 @@
cd /app
alembic -c ./app/alembic.ini upgrade head
rm -rf prometheus
mkdir prometheus
uvicorn main:app --host 0.0.0.0 --port 8080 --loop uvloop