mirror of
https://github.com/alangrainger/immich-public-proxy.git
synced 2025-01-01 05:31:59 +00:00
9 lines
194 B
JavaScript
9 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)
|
|
})()
|