feat: verzija v2.0
All checks were successful
CI/CD Pipeline / build (push) Successful in 1m52s
CI/CD Pipeline / deploy (push) Successful in 1m27s

This commit is contained in:
Ivan Filipovic
2026-04-20 23:25:55 +02:00
parent 9d98f5b466
commit d5f64d827b

View File

@@ -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()
}