A minimalist full-stack To-Do list with timer and lightweight Google Calendar view.
- Add, complete, and remove to-dos
- Simple Pomodoro-style timer (start/stop)
- Mini-calendar with events from your Google Calendar
- Clone repo & install:
npm install
- Create a
.envfile from.env.exampleand fill in credentials. - Start the app:
npm run dev
- Node.js, Express, MongoDB, React
Add new todo:
curl -X POST http://localhost:5000/api/todos \
-H "Content-Type: application/json" \
-d '{"title":"Buy milk"}'