Habits | 144 |Streak | 145 |
---|
├── .gitignore ├── README.md ├── habits.html └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .aider* 2 | .env 3 | 4 | *.swo 5 | *swp 6 | 7 | *.xml 8 | log/ 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Focus Flow ⏱️ 2 | 3 | A minimalist, elegant task management and time tracking application designed to help you stay focused and productive. 4 | 5 | Try it out: [Focus Flow App](https://dat-lequoc.github.io/focus-flow/) 6 | 7 | ## Features 🌟 8 | 9 | - **Task Management** 10 | - Create, edit, and organize tasks with unlimited subtasks 11 | - Mark tasks as complete/incomplete 12 | - Add tasks to "Today's Focus" for better planning 13 | - Search and filter tasks 14 | - Hide/show completed tasks 15 | 16 | - **Time Tracking** 17 | - Built-in Pomodoro timer (25-minute focus sessions) 18 | - Track time spent on each task 19 | - Automatic time logging 20 | - Visual progress tracking 21 | 22 | - **Project Organization** 23 | - Create multiple projects 24 | - Track project progress 25 | - Generate project reports 26 | - Weekly activity charts 27 | 28 | - **User Experience** 29 | - Clean, intuitive interface 30 | - Dark/light mode toggle 31 | - Keyboard shortcuts 32 | - Responsive design 33 | - Local storage persistence 34 | 35 | ## Getting Started 🚀 36 | 37 | 1. Visit [Focus Flow App](https://dat-lequoc.github.io/focus-flow/) 38 | 2. Create your first project 39 | 3. Add tasks and subtasks 40 | 4. Start tracking your time with the Pomodoro timer 41 | 5. Monitor your progress with the built-in analytics 42 | 43 | ## Keyboard Shortcuts ⌨️ 44 | 45 | - `Ctrl/Cmd + N`: Focus new task input 46 | - `Ctrl/Cmd + P`: Focus new project input 47 | - `Ctrl/Cmd + /`: Focus search input 48 | 49 | ## Local Development 💻 50 | 51 | 1. Clone the repository 52 | 2. Open `index.html` in your browser 53 | 3. Start coding! 54 | 55 | ## Contributing 🤝 56 | 57 | Contributions are welcome! Feel free to: 58 | - Report bugs 59 | - Suggest features 60 | - Submit pull requests 61 | 62 | ## Support the Project ☕ 63 | 64 | If you find Focus Flow helpful, consider buying me a coffee! 65 | 66 | [](https://buymeacoffee.com/JWCfI0sTzy) 67 | 68 | ## License 📝 69 | 70 | MIT License - feel free to use this project however you'd like! 71 | -------------------------------------------------------------------------------- /habits.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |Habits | 144 |Streak | 145 |
---|