Organize your life and projects with a clear, hierarchical structure,
smart recurring tasks, and seamless Telegram integration.
Get focused, stay productive, and keep your data private.
More screenshots are available here.
This app allows users to manage their tasks, projects, areas, notes, and tags in an organized way. Users can create tasks, projects, areas (to group projects), notes, and tags. Each task can be associated with a project, and both tasks and notes can be tagged for better organization. Projects can belong to areas and can also have multiple notes and tags. This structure helps users categorize and track their work efficiently, whether theyβre managing individual tasks, larger projects, or keeping detailed notes.
For the thinking behind tududi, read:
- Designing a Life Management System That Doesn't Fight Back
- From Task to Table: How I Finally Got to the Korean Burger
- Task Management: Create, update, and delete tasks. Mark tasks as completed and view them by different filters (Today, Upcoming, Someday). Order them by Name, Due Date, Date Created, or Priority.
- Subtasks: Break down complex tasks into smaller, manageable subtasks with progress tracking and seamless navigation.
- Recurring Tasks: Comprehensive recurring task system with intelligent parent-child relationships:
- Multiple Recurrence Patterns: Daily, weekly, monthly, monthly on specific weekdays, and monthly last day
- Completion-Based Recurrence: Option to repeat based on completion date rather than due date
- Smart Parent-Child Linking: Generated task instances maintain connection to their original recurring pattern
- Direct Parent Editing: Edit recurrence settings directly from any generated task instance
- Flexible Scheduling: Set custom intervals (every 2 weeks, every 3 months, etc.)
- End Date Control: Optional end dates for recurring series
- Project Sharing & Collaboration: Share projects with team members and collaborate effectively
- Quick Notes: Create, update, delete, or assign text notes to projects.
- Tags: Create tags for tasks and notes to enhance organization.
- Project Tracking: Organize tasks into projects. Each project can contain multiple tasks and/or multiple notes.
- Area Categorization: Group projects into areas for better organization and focus.
- Due Date Tracking: Set due dates for tasks and view them based on due date categories.
- Responsive Design: Accessible from various devices, ensuring a consistent experience across desktops, tablets, and mobile phones.
- Multi-Language Support: Available in 24 languages with full localization support for a truly global productivity experience.
- Telegram Integration:
- Create tasks directly through Telegram messages
- Receive daily digests of your tasks
- Quick capture of ideas and todos on the go
- Open API & Access Tokens: Versioned Swagger docs exposed at
/api/v1plus personal API keys for integrating tududi with your own tooling or automations.
Check out our GitHub Project for planned features and progress.
Get up and running quickly with our comprehensive documentation:
docker pull chrisvel/tududi:latest
docker run \
-e [email protected] \
-e TUDUDI_USER_PASSWORD=your-secure-password \
-e TUDUDI_SESSION_SECRET=$(openssl rand -hex 64) \
-v ~/tududi_db:/app/backend/db \
-v ~/tududi_uploads:/app/backend/uploads \
-p 3002:3002 \
-d chrisvel/tududi:latestNavigate to http://localhost:3002 and login with your credentials.
For detailed setup instructions, configuration options, and getting started guides, visit:
- Installation Guide - Docker, development setup, and deployment
- Configuration - Environment variables and advanced settings
- First Steps - Learn the basics and get productive
- Project Sharing - Collaborate with your team
Want to contribute or run Tududi from source? Check out our comprehensive development guide:
Quick overview:
# Clone and install
git clone https://github.com/chrisvel/tududi.git
cd tududi
npm install
# Start development servers
npm run backend:dev # Terminal 1 - Backend on :3001
npm run frontend:dev # Terminal 2 - Frontend on :8080For database management, testing, and detailed development instructions, see docs.tududi.com
Tududi provides a comprehensive REST API for integration with external tools and automation workflows.
Base URL: http://localhost:8080/api/v1
Key Features:
- Complete CRUD operations for tasks, projects, notes, and areas
- Personal API keys for secure access
- Swagger documentation available at
/api-docs(requires authentication) - Support for recurring tasks, subtasks, and tag management
- Real-time task metrics and productivity insights
Authentication: Uses session cookies or Bearer token authentication. Generate personal API keys through the web interface for programmatic access.
Quick Example:
# Get all tasks
curl -H "Authorization: Bearer YOUR_API_KEY" \
http://localhost:3002/api/v1/tasks
# Create a new task
curl -X POST \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name":"Complete API documentation","priority":"medium"}' \
http://localhost:3002/api/v1/taskFor full API documentation, visit /api-docs after authentication or check the Swagger schema definitions in backend/config/swagger.js.
Contributions to tududi are welcome! Whether it's bug fixes, new features, documentation improvements, or translations, we appreciate your help.
Before you start:
- Check existing issues and discussions to avoid duplicate work
- For bugs, open an issue with the bug report template
- For feature requests, start a discussion
Quick contribution workflow:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Make your changes following our code standards
- Run linting and tests:
npm run pre-push - Commit your changes with a clear message
- Push to your fork and open a Pull Request
Read our Contributing Guide for:
- Development setup and workflow
- Code standards and best practices
- Testing requirements
- Database migrations
- Translation guidelines
- Pull request checklist
This project is licensed under the MIT License.
For questions or comments, please open an issue or contact the developer directly.
Join the tududi community:
- Reconya - Network reconnaissance and asset discovery tool
- BreachHarbor - Cybersecurity suite for digital asset protection
- Hevetra - Digital tracking for child health milestones
README created by Chris Veleris for tududi.