Add app.json to override Django predeploy task

- 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 <noreply@anthropic.com>
This commit is contained in:
Trey t
2025-11-26 20:35:54 -06:00
parent f31c31fcb1
commit 501b9cc69c

18
app.json Normal file
View File

@@ -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"
}
]
}
}