feat(backend): scaffold Express API with health and module layout

Add src/routes/notifications, services/pushService, models/device,
scheduler stubs, and entrypoint with GET /health and startup log.
This commit is contained in:
Jose Olarte III
2026-05-11 14:33:32 +08:00
commit 94c38bac74
9 changed files with 1593 additions and 0 deletions

7
src/models/device.ts Normal file
View File

@@ -0,0 +1,7 @@
export interface Device {
id: string;
pushToken: string;
platform: "ios" | "android" | "web";
createdAt: Date;
updatedAt: Date;
}