Other areas of the AE SvelteKit primary routes.

This commit is contained in:
Scott Idem
2026-03-24 12:18:27 -04:00
parent 6018a94499
commit e1338b1a72
13 changed files with 1607 additions and 1026 deletions

View File

@@ -6,14 +6,17 @@ import type { RequestHandler } from './$types';
* Used by Docker and Nginx to verify the service is running.
*/
export const GET: RequestHandler = async () => {
return json({
status: 'healthy',
timestamp: new Date().toISOString(),
service: 'aether-app-sveltekit',
node_env: process.env.NODE_ENV || 'development'
}, {
headers: {
'Cache-Control': 'no-cache'
return json(
{
status: 'healthy',
timestamp: new Date().toISOString(),
service: 'aether-app-sveltekit',
node_env: process.env.NODE_ENV || 'development'
},
{
headers: {
'Cache-Control': 'no-cache'
}
}
});
);
};