immich-public-proxy/app/healthcheck.js
2024-11-02 22:38:43 +01:00

10 lines
194 B
JavaScript

(async () => {
try {
const res = await fetch('http://localhost:3000/healthcheck')
if (await res.text() === 'ok') {
process.exit(0)
}
} catch (e) { }
process.exit(1)
})()