Skip to content

Instantly share code, notes, and snippets.

@BananaAcid
Created August 2, 2024 15:48
Show Gist options
  • Save BananaAcid/d058cc7bd830108a3b176762b33247d8 to your computer and use it in GitHub Desktop.
Save BananaAcid/d058cc7bd830108a3b176762b33247d8 to your computer and use it in GitHub Desktop.
dokku health check in nuxt
{
"scripts": {
"dokku": {
"predeploy": "cd app && npm install && npm run build"
}
},
"healthchecks": {
"web": [
{
"type": "startup",
"name": "web check",
"description": "Checking if the app responds to the /api/health endpoint",
"path": "/api/health",
"attempts": 20
}
]
}
}
export default defineEventHandler(async (event) => {
return {success: true, message: 'OK'};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment