From 501b9cc69c078e0a860227de4dea14276e6f01df Mon Sep 17 00:00:00 2001 From: Trey t Date: Wed, 26 Nov 2025 20:35:54 -0600 Subject: [PATCH] Add app.json to override Django predeploy task MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove Django manage.py migrate predeploy task - Add proper health check configuration for Go API 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- app.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app.json diff --git a/app.json b/app.json new file mode 100644 index 0000000..572e59e --- /dev/null +++ b/app.json @@ -0,0 +1,18 @@ +{ + "name": "mycrib-api", + "description": "MyCrib API (Go)", + "scripts": {}, + "healthchecks": { + "web": [ + { + "type": "startup", + "name": "web check", + "path": "/api/health/", + "attempts": 3, + "wait": 5, + "timeout": 30, + "content": "healthy" + } + ] + } +}