1
0
Fork 0
mirror of https://github.com/alangrainger/immich-public-proxy.git synced 2025-01-04 07:46:45 +01:00
immich-public-proxy/app/healthcheck.js

11 lines
235 B
JavaScript
Raw Normal View History

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