From d5f64d827b25d4f0dc13165cc286c88ca4a3a26b Mon Sep 17 00:00:00 2001 From: Ivan Filipovic Date: Mon, 20 Apr 2026 23:25:55 +0200 Subject: [PATCH] feat: verzija v2.0 --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 780ff66..4d5e4a2 100644 --- a/main.py +++ b/main.py @@ -8,7 +8,7 @@ app = FastAPI() def health(): return { "status": "ok", - "version": os.getenv("deployment.yaml", "dev"), + "version": os.getenv("APP_VERSION", "dev"), "timestamp": datetime.datetime.utcnow().isoformat() }