A calendar to-do combination web application that stores your to-do's day by days! This is a Next.js project that uses Mongoose as the ORM for MongoDB.
First, run the development server:
npm run dev
# or
yarn dev
Open http://localhost:3000 with your browser to see the result.
API routes can be accessed on http://localhost:3000/api/todos. This endpoint can be edited in pages/api/todos/index.ts
.
The pages/api
directory is mapped to /api/*
. Files in this directory are treated as API routes instead of React pages.