Description
A minimal endpoint deploy platforms (and humans) can hit to confirm the server is actually running.
Where
astre_server/src/app.controller.ts
What to implement
@Get('health')
getHealth() {
return { status: 'ok', timestamp: new Date().toISOString() };
}
Acceptance Criteria
Hints
- This is one of the simplest issues in the whole backend list — a good very-first-PR pick.
Description
A minimal endpoint deploy platforms (and humans) can hit to confirm the server is actually running.
Where
astre_server/src/app.controller.tsWhat to implement
Acceptance Criteria
GET /healthreturns200with{ status: 'ok', timestamp: <ISO string> }Hints