A full-stack to-do app for organizing daily tasks — add, track, and complete your work.
- Frontend: React 19, Vite, Tailwind CSS v4, shadcn/ui
- Backend: Node.js, Express, MongoDB (Mongoose)
- Deployment: Render (API)
Taskii/
├── backend/ # Express API (/api/tasks)
│ └── src/
└── frontend/ # React + Vite app
└── src/
cd backend
npm install
npm run devCreate a .env file in backend/:
PORT=5000
MONGODB_URL=your_mongodb_connection_stringAPI runs at http://localhost:5000
cd frontend
npm install
npm run devSet the API URL in frontend/.env:
VITE_API_URL=http://localhost:5000App runs at http://localhost:5173