mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-23 14:46:43 +02:00
🔧 chore(watchtower): try list format for telegram notification URL
Use list format for environment variables as suggested in shoutrrr issue #45 to avoid YAML parsing issues with colon in bot token. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
0b35e71f90
commit
2480d92699
11 changed files with 107 additions and 7 deletions
10
apps/clock/apps/web/src/routes/health/+server.ts
Normal file
10
apps/clock/apps/web/src/routes/health/+server.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import { json } from '@sveltejs/kit';
|
||||
import type { RequestHandler } from './$types';
|
||||
|
||||
export const GET: RequestHandler = async () => {
|
||||
return json({
|
||||
status: 'ok',
|
||||
service: 'clock-web',
|
||||
timestamp: new Date().toISOString(),
|
||||
});
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue