feat: initial project prototype
Node.js CI / Lint and Test (push) Successful in 1m27s

This commit is contained in:
2025-11-12 19:32:40 -08:00
parent 3c853c9a31
commit 13c12f3465
20 changed files with 5746 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client {
provider = "prisma-client-js"
}
datasource db {
provider = "mongodb"
url = env("MONGO_URI")
}
model Reminders {
id String @id @default(auto()) @map("_id") @db.ObjectId
userId String
reminder String
isHarsh Boolean
}