A comprehensive full-stack web application designed to help students manage their tasks, track productivity, and optimize their study schedule using AI-powered intelligent features and advanced time management tools.
- Secure JWT-based authentication system
- User registration with email verification (OTP)
- Profile management with customizable preferences
- Password hashing with bcryptjs for security
- Create, edit, and organize tasks with priorities (low, medium, high, urgent)
- Task status tracking (pending, in-progress, completed, cancelled)
- Category-based task organization
- Deadline management with visual indicators
- Bulk task operations and filtering
- Real-time analytics and productivity insights
- Today's Tasks (filtered by current date)
- Overdue Tasks tracking with alerts
- Upcoming Tasks preview and planning
- Past Tasks history and analysis
- Quick statistics and progress visualization
- Built-in Pomodoro technique timer
- Session tracking and analytics
- Productivity intervals logging
- Break reminders and session history
- Integrated calendar system for time planning
- Google Calendar synchronization
- Schedule conflict detection
- Event creation and management
- Google Gemini AI integration for intelligent suggestions
- Personalized task planning recommendations
- Study schedule optimization
- Productivity pattern analysis
- Real-time notifications and alerts
- Email-based reminders (via Nodemailer)
- Automated task deadline notifications
- Customizable notification preferences
- Comprehensive productivity tracking
- Performance trends and patterns
- Task completion analytics
- Time management insights
- Visual data representation with charts
- Responsive design for all devices
- Dark theme with elegant styling
- Intuitive navigation and user experience
- Mobile-optimized interface
- Accessibility-focused design
- Node.js (ES6+ Modules) - Runtime environment
- Express.js 4.19.2 - Web application framework
- MongoDB with Mongoose 8.17.1 - NoSQL database with ODM
- JWT (jsonwebtoken 9.0.2) - Secure authentication
- bcryptjs 3.0.2 - Password hashing
- Google APIs (googleapis 156.0.0) - Calendar integration
- Google Auth Library 10.2.1 - OAuth authentication
- Nodemailer 7.0.5 - Email service for notifications
- Node-cron 4.2.1 - Scheduled task automation
- Cloudinary 2.7.0 - File upload and management
- Multer 1.4.5 - File handling middleware
- CORS 2.8.5 - Cross-origin resource sharing
- HTML5 - Semantic markup structure
- CSS3 with Tailwind CSS - Modern responsive styling
- Vanilla JavaScript (ES6+) - Client-side functionality
- Chart.js - Data visualization and analytics
- Font Awesome - Comprehensive icon library
- Fetch API - Modern HTTP client for API communication
- Nodemon 3.1.10 - Development server with hot reload
- dotenv 17.2.1 - Environment variable management
- Git - Version control system
BrainyBalance_Intelligent-Task-Planner-for-Students/
βββ π backend/ # Server-side application
β βββ π lib/
β β βββ db.js # MongoDB connection and configuration
β βββ π middleware/
β β βββ auth.js # JWT authentication middleware
β βββ π models/ # Mongoose data models
β β βββ User.js # User authentication and profile
β β βββ Task.js # Task management with priorities
β β βββ Schedule.js # Calendar and scheduling
β β βββ Pomodoro.js # Pomodoro session tracking
β β βββ Analytics.js # Productivity analytics data
β β βββ Notification.js # Notification system
β β βββ AIRecommendation.js # AI-generated recommendations
β β βββ CalendarIntegration.js # Google Calendar sync
β β βββ Reminder.js # Automated reminders
β β βββ UserPreferences.js # User settings and preferences
β βββ π routes/ # API endpoint definitions
β β βββ authRoutes.js # Authentication endpoints
β β βββ taskRoutes.js # Task CRUD operations
β β βββ scheduleRoutes.js # Schedule management
β β βββ pomodoroRoutes.js # Pomodoro timer endpoints
β β βββ analyticsRoutes.js # Analytics and insights
β β βββ notificationRoutes.js # Notification management
β β βββ calendarRoutes.js # Calendar integration
β β βββ aiRecommendationRoutes.js # AI recommendation endpoints
β βββ π services/ # Business logic and external integrations
β β βββ aiRecommendationService.js # AI recommendation logic
β β βββ emailService.js # Email notification service
β β βββ geminiService.js # Google Gemini AI integration
β β βββ googleCalendarService.js # Google Calendar API
β β βββ otpService.js # OTP generation and verification
β β βββ reminderService.js # Automated reminder scheduler
β βββ π src/
β β βββ index.js # Main server application
β βββ .env-example # Environment variables template
β βββ package.json # Dependencies and scripts
β βββ package-lock.json # Dependency lock file
βββ π frontend/ # Client-side application
β βββ π js/ # JavaScript modules
β β βββ auth.js # Authentication logic
β β βββ dashboard.js # Dashboard functionality
β β βββ tasks.js # Task management interface
β β βββ schedule.js # Schedule management UI
β β βββ pomodoro.js # Pomodoro timer interface
β β βββ analytics.js # Analytics visualization
β β βββ aiRecommendations.js # AI recommendations interface
β β βββ googleCalendar.js # Google Calendar integration
β β βββ profile.js # User profile management
β β βββ verifyOtp.js # OTP verification
β β βββ script.js # Common utilities
β βββ index.html # Landing page
β βββ login.html # Authentication page
β βββ verify-otp.html # OTP verification page
β βββ dashboard.html # Main dashboard
β βββ tasks.html # Task management interface
β βββ schedule.html # Schedule management
β βββ pomodoro.html # Pomodoro timer
β βββ analytics.html # Analytics dashboard
β βββ ai-recommendations.html # AI recommendations page
β βββ calendar.html # Calendar integration
β βββ profile.html # User profile settings
β βββ auth-test.html # Authentication testing
β βββ test-tasks.html # Task testing interface
βββ π Others/ # Documentation and resources
β βββ CSE327_Intelligent_Task_Planner_Term_Project.pdf
β βββ Software Requirements Specification.pdf
β βββ System Modeling Diagrams.pdf
βββ LICENSE # MIT License
βββ README.md # Project documentation
- Node.js (v14 or higher) - Download here
- MongoDB Atlas account or local MongoDB installation - Get started
- Google Cloud Console account (for Calendar and AI features) - Console
- Git - Download here
git clone https://github.com/Shawon00s/BrainyBalance_Intelligent-Task-Planner-for-Students.git
cd BrainyBalance_Intelligent-Task-Planner-for-StudentsNavigate to the backend directory:
cd backendInstall dependencies:
npm installConfigure environment variables:
Create a .env file in the backend directory based on .env-example:
# Server Configuration
PORT=3000
NODE_ENV=development
FRONTEND_URL=http://localhost:3000
# Database Configuration
MONGO_URI=your_mongodb_connection_string
# Authentication
JWT_SECRET=your_super_secret_jwt_key_here
# Google Calendar API Configuration
GOOGLE_CLIENT_ID=your_google_client_id
GOOGLE_CLIENT_SECRET=your_google_client_secret
GOOGLE_REDIRECT_URI=http://localhost:3000/api/calendar/callback
# Google Gemini AI API
GEMINI_API_KEY=your_gemini_api_key
# Email Configuration (for OTP verification)
EMAIL_HOST=smtp.gmail.com
EMAIL_PORT=587
EMAIL_USER=your_email@gmail.com
EMAIL_PASS=your_app_password
EMAIL_FROM=your_email@gmail.comStart the development server:
npm run devThe server will start on http://localhost:3000 with:
- β
Health check endpoint:
http://localhost:3000/api/health - β Frontend served automatically
- β Hot reload enabled with Nodemon
Option 1: Integrated Serving (Recommended)
- The backend automatically serves the frontend files
- Simply navigate to
http://localhost:3000in your browser - All features work seamlessly with this setup
Option 2: Separate Frontend Development If you need to modify frontend files extensively:
cd frontend
# Using Python (if available)
python -m http.server 8000
# OR using Node.js http-server
npx http-server -p 8000- Create a MongoDB Atlas cluster
- Create a database user with read/write permissions
- Whitelist your IP address (or use 0.0.0.0/0 for development)
- Copy the connection string to your
.envfile
- Go to Google Cloud Console
- Create a new project or select existing one
- Enable the following APIs:
- Google Calendar API
- Generative Language API (for Gemini)
- Create credentials (OAuth 2.0 Client ID and API Key)
- Add your credentials to the
.envfile
For OTP verification features:
- Use Gmail with App Password or any SMTP service
- Configure email settings in
.envfile - Enable 2-factor authentication for Gmail
- Generate an App Password for the application
- Create Account: Register with email verification via OTP
- Complete Profile: Set up your preferences and study goals
- Dashboard Overview: Get familiar with your productivity dashboard
- Create Tasks: Start by adding your first tasks with deadlines and priorities
- Schedule Time: Use the calendar to plan your study sessions
- Track Progress: Monitor your productivity with analytics
- Create Tasks: Add tasks with titles, descriptions, deadlines, and priorities
- Organize: Use categories and priority levels (low, medium, high, urgent)
- Track Status: Monitor progress through pending β in-progress β completed
- Filter & Sort: View tasks by status, priority, or deadline
- Bulk Operations: Manage multiple tasks efficiently
- Today's Focus: View tasks due today with visual priority indicators
- Overdue Alerts: Immediate visibility of missed deadlines
- Upcoming Preview: Plan ahead with upcoming task visibility
- Progress Analytics: Real-time completion rates and productivity scores
- Focus Sessions: 25-minute focused work periods
- Break Reminders: Automatic short and long break notifications
- Session Tracking: Monitor your focused work time
- Analytics Integration: Pomodoro data feeds into productivity insights
- Smart Suggestions: Get AI-powered task prioritization recommendations
- Schedule Optimization: Receive suggestions for optimal study times
- Productivity Insights: AI analysis of your work patterns
- Personalized Tips: Custom advice based on your productivity data
- Google Calendar Sync: Two-way synchronization with Google Calendar
- Event Management: Create and manage study sessions
- Conflict Detection: Avoid scheduling conflicts automatically
- Timeline View: Visual representation of your schedule
- Real-time Alerts: Instant notifications for important updates
- Email Reminders: Email notifications for upcoming deadlines
- Custom Settings: Personalize your notification preferences
- Smart Timing: Intelligent notification scheduling
POST /api/auth/register # Register new user with email verification
POST /api/auth/login # User authentication
POST /api/auth/verify-otp # Email verification via OTP
GET /api/auth/profile # Get current user profile
PUT /api/auth/profile # Update user profile
POST /api/auth/logout # User logout
GET /api/tasks # Get all user tasks (with filtering)
POST /api/tasks # Create new task
GET /api/tasks/:id # Get specific task
PUT /api/tasks/:id # Update task
DELETE /api/tasks/:id # Delete task
PATCH /api/tasks/:id/complete # Mark task as completed
PATCH /api/tasks/:id/status # Update task status
GET /api/schedule # Get schedule items
POST /api/schedule # Create schedule item
GET /api/schedule/:id # Get specific schedule item
PUT /api/schedule/:id # Update schedule item
DELETE /api/schedule/:id # Delete schedule item
GET /api/pomodoro/sessions # Get user's pomodoro sessions
POST /api/pomodoro/sessions # Start new pomodoro session
PUT /api/pomodoro/sessions/:id # Update session
POST /api/pomodoro/intervals # Log work/break intervals
GET /api/pomodoro/stats # Get pomodoro statistics
GET /api/analytics/dashboard # Get dashboard analytics
GET /api/analytics/productivity # Get productivity metrics
GET /api/analytics/trends # Get trend analysis
GET /api/analytics/summary # Get summary statistics
GET /api/notifications # Get user notifications
GET /api/notifications/unread # Get unread notifications
GET /api/notifications/unread/count # Get unread count
POST /api/notifications # Create notification
PATCH /api/notifications/:id/read # Mark notification as read
DELETE /api/notifications/:id # Delete notification
GET /api/calendar/integrations # Get calendar integrations
POST /api/calendar/integrations # Create calendar integration
PUT /api/calendar/integrations/:id # Update integration
DELETE /api/calendar/integrations/:id # Remove integration
GET /api/calendar/events # Get calendar events
POST /api/calendar/events # Create calendar event
GET /api/ai-recommendations # Get AI recommendations
POST /api/ai-recommendations/generate # Generate new recommendations
PUT /api/ai-recommendations/:id # Update recommendation status
DELETE /api/ai-recommendations/:id # Delete recommendation
GET /api/health # System health check
The application uses MongoDB with the following optimized collections:
{
_id: ObjectId,
email: String (unique, required),
password: String (hashed with bcryptjs),
firstName: String,
lastName: String,
isVerified: Boolean,
otp: String,
otpExpires: Date,
createdAt: Date,
updatedAt: Date
}{
_id: ObjectId,
userId: ObjectId (ref: User),
title: String (required),
description: String,
deadline: Date (required),
priority: Enum ['low', 'medium', 'high', 'urgent'],
status: Enum ['pending', 'in-progress', 'completed', 'cancelled'],
category: String,
tags: [String],
estimatedTime: Number, // in minutes
actualTime: Number, // in minutes
completedAt: Date,
createdAt: Date,
updatedAt: Date
}{
_id: ObjectId,
userId: ObjectId (ref: User),
title: String (required),
description: String,
startTime: Date (required),
endTime: Date (required),
type: Enum ['study', 'break', 'meeting', 'other'],
taskId: ObjectId (ref: Task), // optional
recurrence: String, // daily, weekly, monthly
createdAt: Date,
updatedAt: Date
}{
_id: ObjectId,
userId: ObjectId (ref: User),
taskId: ObjectId (ref: Task), // optional
duration: Number (default: 25), // in minutes
breakDuration: Number (default: 5),
status: Enum ['active', 'paused', 'completed', 'cancelled'],
startTime: Date,
endTime: Date,
intervals: [{
type: Enum ['work', 'break'],
duration: Number,
startTime: Date,
endTime: Date
}],
createdAt: Date,
updatedAt: Date
}{
_id: ObjectId,
userId: ObjectId (ref: User),
date: Date (required),
tasksCompleted: Number,
tasksCreated: Number,
totalWorkTime: Number, // in minutes
pomodoroSessions: Number,
productivityScore: Number, // 0-100
categories: {
[categoryName]: {
completed: Number,
time: Number
}
},
createdAt: Date,
updatedAt: Date
}{
_id: ObjectId,
userId: ObjectId (ref: User),
type: Enum ['task_deadline', 'reminder', 'achievement', 'system'],
title: String (required),
message: String (required),
isRead: Boolean (default: false),
priority: Enum ['low', 'medium', 'high'],
actionUrl: String, // optional redirect URL
metadata: Object, // additional data
scheduledFor: Date, // for scheduled notifications
sentAt: Date,
createdAt: Date,
updatedAt: Date
}{
_id: ObjectId,
userId: ObjectId (ref: User),
type: Enum ['task_priority', 'schedule_optimization', 'productivity_tip'],
title: String (required),
content: String (required),
confidence: Number, // 0-1 AI confidence score
isApplied: Boolean (default: false),
isUseful: Boolean, // user feedback
metadata: {
generatedBy: String, // AI model used
prompt: String, // original prompt
context: Object // relevant user data
},
expiresAt: Date, // recommendation expiry
createdAt: Date,
updatedAt: Date
}{
_id: ObjectId,
userId: ObjectId (ref: User),
provider: Enum ['google', 'outlook', 'apple'],
accessToken: String, // encrypted
refreshToken: String, // encrypted
calendarId: String,
syncEnabled: Boolean (default: true),
lastSyncAt: Date,
syncErrors: [String],
settings: {
syncTasks: Boolean,
syncSchedule: Boolean,
createReminders: Boolean
},
createdAt: Date,
updatedAt: Date
}{
_id: ObjectId,
userId: ObjectId (ref: User),
taskId: ObjectId (ref: Task), // optional
scheduleId: ObjectId (ref: Schedule), // optional
type: Enum ['task_deadline', 'schedule_start', 'custom'],
reminderTime: Date (required),
message: String,
method: Enum ['notification', 'email', 'both'],
isRecurring: Boolean,
recurrenceRule: String, // cron-like pattern
status: Enum ['pending', 'sent', 'failed'],
sentAt: Date,
createdAt: Date,
updatedAt: Date
}{
_id: ObjectId,
userId: ObjectId (ref: User),
theme: Enum ['light', 'dark', 'auto'],
notifications: {
email: Boolean,
push: Boolean,
taskReminders: Boolean,
deadlineAlerts: Boolean,
weeklyReports: Boolean
},
pomodoro: {
workDuration: Number, // minutes
shortBreak: Number, // minutes
longBreak: Number, // minutes
autoStartBreaks: Boolean,
autoStartPomodoros: Boolean
},
timezone: String,
workingHours: {
start: String, // "09:00"
end: String, // "17:00"
workDays: [Number] // [1,2,3,4,5] for Mon-Fri
},
aiRecommendations: {
enabled: Boolean,
frequency: Enum ['daily', 'weekly', 'monthly']
},
createdAt: Date,
updatedAt: Date
}- Optimized Indexes: Strategic indexing on userId, dates, and status fields
- User Data Isolation: All data is scoped to userId for security
- Date-based Queries: Efficient filtering for time-sensitive data
- Real-time Updates: Support for live data synchronization
- Data Validation: Mongoose schema validation for data integrity
- JWT-based Authentication: Secure stateless authentication using JSON Web Tokens
- Password Security: Passwords hashed using bcryptjs with salt rounds
- Email Verification: OTP-based email verification for new registrations
- Protected Routes: Middleware-based route protection for API endpoints
- Token Expiration: Configurable JWT expiration for enhanced security
- Input Validation: Comprehensive request validation and sanitization
- CORS Configuration: Proper Cross-Origin Resource Sharing setup
- Environment Variables: Sensitive data stored in environment variables
- User Data Isolation: All data operations are user-scoped
- API Rate Limiting: Protection against brute force attacks
- Data Encryption: Sensitive tokens and credentials are encrypted
- Minimal Data Collection: Only necessary user data is collected
- Data Retention Policies: Configurable data cleanup and retention
- Audit Logging: Comprehensive logging for security monitoring
# Check Node.js version (requires v14+)
node --version
# Reinstall dependencies
cd backend
rm -rf node_modules package-lock.json
npm install
# Verify environment variables
cp .env-example .env
# Edit .env with your actual values# Test MongoDB connection
# Check if MONGO_URI is correct in .env
# Ensure MongoDB Atlas IP whitelist includes your IP
# Verify database user permissions
# Common MongoDB Atlas connection string format:
# mongodb+srv://<username>:<password>@cluster.mongodb.net/<database>?retryWrites=true&w=majority# Ensure backend is running first
npm run dev
# Check if port 3000 is available
netstat -an | findstr 3000 # Windows
lsof -i :3000 # macOS/Linux
# Clear browser cache and localStorage
# Try incognito/private browsing mode- Verify JWT token is not expired (check browser dev tools β Application β Local Storage)
- Check network requests in browser dev tools for API errors
- Ensure proper date format in task creation (ISO 8601)
- Verify MongoDB connection and user permissions
# These warnings are harmless in development
# For production, consider dropping and recreating indexes:
# db.collection.dropIndexes()# Check JWT_SECRET in .env file
# Verify email and password are correct
# Check if user account is verified (OTP)
# Clear browser localStorage and try again# Verify email configuration in .env
# Check if Gmail App Password is configured correctly
# Ensure 2-factor authentication is enabled on Gmail
# Test email service independently# Verify GEMINI_API_KEY in .env
# Check Google Cloud Console for API quota
# Ensure Generative Language API is enabled
# Test API key with a simple request# Verify Google Calendar API is enabled
# Check OAuth 2.0 credentials configuration
# Ensure redirect URI matches exactly
# Test authentication flow step by step- Enable MongoDB connection pooling
- Implement API response caching
- Use database indexes effectively
- Optimize database queries with aggregation
- Implement lazy loading for large datasets
- Use efficient DOM manipulation techniques
- Optimize image and asset loading
- Implement client-side caching strategies
- Use ESLint for JavaScript linting
- Implement consistent error handling
- Add comprehensive logging
- Write unit and integration tests
- Keep API documentation updated
- Document environment variable requirements
- Maintain changelog for version tracking
- Create setup guides for different environments
- Set
NODE_ENV=productionin environment - Use strong JWT secrets (minimum 32 characters)
- Configure proper CORS origins
- Set up SSL/TLS certificates
- Configure rate limiting
- Set up monitoring and logging
- Configure database backups
- Test all API endpoints
- Verify email service functionality
- Test Google integrations
- Modern Dark Theme: Elegant dark interface optimized for long study sessions
- Responsive Layout: Seamless experience across desktop, tablet, and mobile devices
- Intuitive Navigation: Clean, accessible interface with logical information architecture
- Visual Hierarchy: Clear priority indicators and status colors for better task management
- Typography: Carefully chosen fonts for optimal readability and aesthetics
- Interactive Charts: Real-time data visualization using Chart.js
- Smooth Animations: CSS transitions and animations for enhanced user experience
- Icon System: Comprehensive Font Awesome icon library for intuitive navigation
- Color Coding: Smart use of colors for task priorities and status indicators
- Loading States: Proper feedback during data loading and API operations
- Keyboard Navigation: Full keyboard accessibility support
- Screen Reader Friendly: Semantic HTML and proper ARIA labels
- High Contrast: Dark theme with sufficient color contrast ratios
- Responsive Text: Scalable text sizes for different screen resolutions
- Focus Indicators: Clear visual focus states for better navigation
- Daily Scoring: Comprehensive productivity score calculation (0-100)
- Task Completion Rates: Percentage of completed vs. created tasks
- Time Tracking: Detailed time analysis for different activities
- Pattern Recognition: AI-powered identification of productivity patterns
- Trend Analysis: Historical data visualization and trend identification
- Goal Achievement: Track progress towards personal and academic goals
- Category Analysis: Breakdown of productivity by task categories
- Time Distribution: Visual representation of time allocation
- Pomodoro Analytics: Focus session effectiveness and patterns
- Weekly/Monthly Reports: Comprehensive productivity summaries
- Interactive Charts: Dynamic charts for data exploration
- Progress Bars: Visual progress indicators for goals and tasks
- Heat Maps: Activity intensity visualization across time periods
- Trend Lines: Long-term productivity trend analysis
- Comparative Analysis: Performance comparison across different periods
We welcome contributions from the community! Here's how you can help improve BrainyBalance:
-
Fork the Repository
git fork https://github.com/Shawon00s/BrainyBalance_Intelligent-Task-Planner-for-Students.git
-
Clone Your Fork
git clone https://github.com/your-username/BrainyBalance_Intelligent-Task-Planner-for-Students.git cd BrainyBalance_Intelligent-Task-Planner-for-Students -
Create a Feature Branch
git checkout -b feature/amazing-new-feature
- JavaScript: Use ES6+ features and modern syntax
- File Naming: Use camelCase for JavaScript files, kebab-case for HTML
- Comments: Write clear, descriptive comments for complex logic
- Error Handling: Implement comprehensive error handling
- Testing: Add tests for new features and bug fixes
- Ensure Quality: Test your changes thoroughly
- Update Documentation: Update README and API docs if needed
- Commit Standards: Use descriptive commit messages
git commit -m "feat: add AI-powered task prioritization feature" git commit -m "fix: resolve calendar sync authentication issue" git commit -m "docs: update API documentation for notification endpoints"
- Submit PR: Create a detailed pull request with:
- Clear description of changes
- Screenshots for UI changes
- Testing instructions
- Related issue numbers
- π Bug Fixes: Help identify and fix issues
- β¨ New Features: Implement new functionality
- π Documentation: Improve project documentation
- π¨ UI/UX: Enhance user interface and experience
- π§ Performance: Optimize application performance
- π§ͺ Testing: Add comprehensive test coverage
- π Localization: Add support for multiple languages
- π€ Google Gemini AI Integration: Intelligent task recommendations and scheduling optimization
- π§ Email Verification System: OTP-based user verification with Nodemailer
- π Google Calendar Sync: Two-way synchronization with Google Calendar
- π Enhanced Notification System: Real-time notifications with multiple delivery methods
- β° Automated Reminder Service: Scheduled reminders using node-cron
- π― Advanced Analytics: Comprehensive productivity tracking and insights
- π± Mobile Optimization: Improved responsive design for mobile devices
- Enhanced dashboard with better task filtering and categorization
- Improved error handling and user feedback
- Optimized database queries with proper indexing
- Better security with enhanced JWT authentication
- Streamlined API endpoints with consistent response formats
- Fixed task date filtering issues
- Resolved calendar integration authentication problems
- Improved notification delivery reliability
- Fixed responsive design issues on various screen sizes
- Pomodoro timer integration with session tracking
- User preference management system
- Basic analytics and productivity insights
- File upload capabilities with Cloudinary integration
- Enhanced task management with priority levels
- Improved user interface with better navigation
- Added data validation and error handling
- Optimized database schema design
- Core task management functionality
- User authentication and authorization
- Basic dashboard with task overview
- Responsive web design
- MongoDB database integration
- RESTful API architecture
This project is licensed under the MIT License - see the LICENSE file for complete details.
- β Commercial Use: Use for commercial projects
- β Modification: Modify and adapt the code
- β Distribution: Distribute original or modified versions
- β Private Use: Use for personal projects
β οΈ Liability: No warranty or liability providedβ οΈ Attribution: Include original license and copyright notice
- Sudipto Roy S'hawon - Project Creator & Lead Developer
- GitHub: @Shawon00s
- Email: Contact via GitHub
- CSE327.6 Course Team - Academic guidance and project supervision
- Open Source Community - For the amazing tools and libraries used
- Beta Testers - Students who provided valuable feedback during development
- MongoDB Atlas - Reliable cloud database hosting
- Google Cloud Platform - AI services and API infrastructure
- Tailwind CSS - Utility-first CSS framework for rapid development
- Chart.js - Beautiful and responsive data visualization
- Font Awesome - Comprehensive icon library
- Nodemailer - Email service integration
- JWT.io - JSON Web Token implementation
- North South University - Academic support and resources
- CSE327.6 Software Engineering Course - Project framework and guidance
- Department of Electrical and Computer Engineering - Technical resources
- Pomodoro Technique - Time management methodology by Francesco Cirillo
- Getting Things Done (GTD) - Productivity system by David Allen
- Modern Task Management Apps - UI/UX inspiration from contemporary productivity tools