A smart reminder app to organize your tasks and boost productivity.Set, manage, and get reminded with ease.
Demo · Report Bug · Request Feature
Rimix is a cutting-edge task management application that leverages the power of:
- Voice Recognition for natural task creation
- Smart Document Processing for automated task extraction
- Interactive Notifications with custom alarms
- Dynamic Theming for optimal viewing experience
- Responsive Design for seamless cross-device usage
- Smart Voice Recognition: Create reminders using natural speech
- File Upload Processing: Extract reminder details from text files
- Interactive Notifications: Custom alarm sounds and desktop notifications
- Real-time Timer & Stopwatch: Built-in time management tools
- Dark/Light Theme: Elegant UI with theme switching
- Categories & Priorities: Organize reminders with categories and priority levels
- MongoDB Integration: Persistent storage with Mongoose
- Responsive Design: Mobile-friendly interface
- Frontend: Next.js, TypeScript
- Styling: Tailwind CSS
- Backend: Next.js API Routes
- Database: MongoDB with Mongoose
- APIs: Web Speech API, Web Audio API, Notifications API
- State Management: React Hooks
- Natural language processing
- Date/time extraction
- Multiple format support
- Text content extraction
- Smart parsing
- Date format handling
- Custom audio notifications
- Visual interaction game
- Multi-sensory feedback
- MongoDB integration
- Type-safe models
- Efficient querying
- Create
.env.localin the project root with:
NEXT_PUBLIC_MONGO_DB_URI="mongodb://localhost:27017/rimix"
- Start MongoDB locally, then run the app with
npm run dev.
GET /api/reminders— list reminders. Query params:q,completed=true|false,page,limit.POST /api/reminders— create reminder. Body:{ title, description?, date?, time?, category?, priority? }.GET /api/reminders/:id— get a reminder by id.PUT /api/reminders/:id— update fields in body.PATCH /api/reminders/:id— partial update (e.g.,{ completed: true }).DELETE /api/reminders/:id— delete reminder.
Responses are JSON of the form { ok: boolean, data|error }.
# Node.js 16+ and npm
node --version
npm --version
# MongoDB running locally or cloud instance- Clone the repository
git clone https://github.com/AashishKumarSingh1/Rimix.git
cd rimix- Install dependencies
npm install- Set up environment variables
# Create .env.local and add:
NEXT_PUBLIC_MONGO_DB_URI="your_mongodb_connection_string"- Start development server
npm run devrimix/
├── app/ # Next.js 13 app directory
│ ├── layout.tsx # Root layout with providers
│ ├── page.tsx # Main application page
│ └── api/ # API routes
│ └── reminders/ # Reminder endpoints
├── lib/ # Core utilities
│ ├── alarm.ts # Alarm system
│ ├── fileUpload.ts # File processing
│ ├── http.ts # API utilities
│ ├── mongoose.ts # Database connection
│ └── speech.ts # Voice recognition
├── models/ # Database models
│ └── Reminder.ts # Reminder schema
└── public/ # Static assets
- Authentication
- Email/Password
- OAuth integration
- Role-based access
- Team Features
- Shared reminders
- Collaborative lists
- Team notifications
- AI Enhancements
- Smart categorization
- Priority prediction
- Natural language improvements
- Mobile Apps
- React Native implementation
- Push notifications
- Offline support
We love contributions! Please see our Contributing Guide for details.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
Made with ❤️ by Aashish Kumar Singh
If you found this project helpful, please give it a ⭐️!