├── .gitignore ├── LICENSE ├── controllers ├── notificationController.js ├── reviewController.js ├── scholarshipController.js ├── studentController.js └── universityController.js ├── models ├── Notification.js ├── Review.js ├── Scholarship.js ├── Student.js └── University.js ├── package.json ├── routes ├── notificationRoutes.js ├── reviewRoutes.js ├── scholarshipRoutes.js ├── studentRoutes.js └── universityRoutes.js ├── sanity backend ├── .gitignore ├── README.md ├── eslint.config.mjs ├── package.json ├── sanity.cli.ts ├── sanity.config.ts ├── schemaTypes │ ├── SliderSchema.ts │ ├── index.ts │ └── successStories.ts ├── static │ └── .gitkeep └── tsconfig.json ├── sanity ├── .gitignore ├── README.md ├── eslint.config.mjs ├── package.json ├── sanity.cli.ts ├── sanity.config.ts ├── schemaTypes │ ├── SliderSchema.ts │ ├── index.ts │ └── successStories.ts ├── static │ └── .gitkeep └── tsconfig.json ├── server.js └── vercel.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/LICENSE -------------------------------------------------------------------------------- /controllers/notificationController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/controllers/notificationController.js -------------------------------------------------------------------------------- /controllers/reviewController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/controllers/reviewController.js -------------------------------------------------------------------------------- /controllers/scholarshipController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/controllers/scholarshipController.js -------------------------------------------------------------------------------- /controllers/studentController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/controllers/studentController.js -------------------------------------------------------------------------------- /controllers/universityController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/controllers/universityController.js -------------------------------------------------------------------------------- /models/Notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/models/Notification.js -------------------------------------------------------------------------------- /models/Review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/models/Review.js -------------------------------------------------------------------------------- /models/Scholarship.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/models/Scholarship.js -------------------------------------------------------------------------------- /models/Student.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/models/Student.js -------------------------------------------------------------------------------- /models/University.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/models/University.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/package.json -------------------------------------------------------------------------------- /routes/notificationRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/routes/notificationRoutes.js -------------------------------------------------------------------------------- /routes/reviewRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/routes/reviewRoutes.js -------------------------------------------------------------------------------- /routes/scholarshipRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/routes/scholarshipRoutes.js -------------------------------------------------------------------------------- /routes/studentRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/routes/studentRoutes.js -------------------------------------------------------------------------------- /routes/universityRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/routes/universityRoutes.js -------------------------------------------------------------------------------- /sanity backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity backend/.gitignore -------------------------------------------------------------------------------- /sanity backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity backend/README.md -------------------------------------------------------------------------------- /sanity backend/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity backend/eslint.config.mjs -------------------------------------------------------------------------------- /sanity backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity backend/package.json -------------------------------------------------------------------------------- /sanity backend/sanity.cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity backend/sanity.cli.ts -------------------------------------------------------------------------------- /sanity backend/sanity.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity backend/sanity.config.ts -------------------------------------------------------------------------------- /sanity backend/schemaTypes/SliderSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity backend/schemaTypes/SliderSchema.ts -------------------------------------------------------------------------------- /sanity backend/schemaTypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity backend/schemaTypes/index.ts -------------------------------------------------------------------------------- /sanity backend/schemaTypes/successStories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity backend/schemaTypes/successStories.ts -------------------------------------------------------------------------------- /sanity backend/static/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity backend/static/.gitkeep -------------------------------------------------------------------------------- /sanity backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity backend/tsconfig.json -------------------------------------------------------------------------------- /sanity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity/.gitignore -------------------------------------------------------------------------------- /sanity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity/README.md -------------------------------------------------------------------------------- /sanity/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity/eslint.config.mjs -------------------------------------------------------------------------------- /sanity/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity/package.json -------------------------------------------------------------------------------- /sanity/sanity.cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity/sanity.cli.ts -------------------------------------------------------------------------------- /sanity/sanity.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity/sanity.config.ts -------------------------------------------------------------------------------- /sanity/schemaTypes/SliderSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity/schemaTypes/SliderSchema.ts -------------------------------------------------------------------------------- /sanity/schemaTypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity/schemaTypes/index.ts -------------------------------------------------------------------------------- /sanity/schemaTypes/successStories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity/schemaTypes/successStories.ts -------------------------------------------------------------------------------- /sanity/static/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity/static/.gitkeep -------------------------------------------------------------------------------- /sanity/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/sanity/tsconfig.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/server.js -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/UniSathi-Backend/HEAD/vercel.json --------------------------------------------------------------------------------