From 2e825d08e0b163dcbfea46ac0b2f396bd0e6d4de Mon Sep 17 00:00:00 2001 From: Eugene Burmakin Date: Wed, 2 Jul 2025 21:42:28 +0200 Subject: [PATCH] Update app version --- CHANGELOG.md | 2 +- app.json | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc04cfd9..633662d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -# [0.29.1] - UNRELEASED +# [0.29.1] - 2025-07-02 ## Fixed diff --git a/app.json b/app.json index 2f2f9e51..9c425d4e 100644 --- a/app.json +++ b/app.json @@ -9,5 +9,17 @@ "dokku": { "predeploy": "bundle exec rails db:migrate" } + }, + "healthchecks": { + "web": [ + { + "type": "startup", + "name": "web check", + "description": "Checking if the app responds to the /api/v1/health endpoint", + "path": "/api/v1/health", + "attempts": 10, + "interval": 10 + } + ] } }