From fd1f4034b6438ccccfe204bc8c0795c0d6aac94e Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Fri, 1 Dec 2023 10:49:06 -0500 Subject: [PATCH] feat: add healthcheck --- porter.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/porter.yaml b/porter.yaml index 26348cd..1e6ea86 100644 --- a/porter.yaml +++ b/porter.yaml @@ -2,6 +2,9 @@ apps: my-app-web: run: "flask --app web run --host 0.0.0.0 --port $PORT" + healthCheck: + enabled: true + httpPath: /status my-app-wkr: run: "python worker.py"