2024-10-31 19:17:58 +01:00
|
|
|
(async () => {
|
|
|
|
try {
|
2024-11-02 22:38:43 +01:00
|
|
|
const res = await fetch('http://localhost:3000/healthcheck')
|
2024-10-31 19:17:58 +01:00
|
|
|
if (await res.text() === 'ok') {
|
|
|
|
process.exit(0)
|
|
|
|
}
|
|
|
|
} catch (e) { }
|
|
|
|
process.exit(1)
|
|
|
|
})()
|