1
0
Fork 0
mirror of https://github.com/alangrainger/immich-public-proxy.git synced 2024-12-29 12:21:57 +00:00
immich-public-proxy/healthcheck.js

11 lines
235 B
JavaScript
Raw Normal View History

2024-10-31 18:17:58 +00:00
(async () => {
try {
2024-10-31 18:24:39 +00:00
require('dotenv').config()
2024-10-31 18:17:58 +00:00
const res = await fetch(process.env.PROXY_PUBLIC_URL + '/healthcheck')
if (await res.text() === 'ok') {
process.exit(0)
}
} catch (e) { }
process.exit(1)
})()