{"id":19383661,"url":"https://github.com/rayan2162/my-day-management-app","last_synced_at":"2026-01-04T11:02:24.813Z","repository":{"id":252480547,"uuid":"840565262","full_name":"rayan2162/my-day-management-app","owner":"rayan2162","description":"My Day Management App is a minimalist productivity tool designed to help you organize and streamline your daily tasks and long-term goals. Whether you're managing your to-do lists, tracking habits, taking notes, prioritizing tasks, using the Pomodoro technique, setting and tracking goals this app is for you!","archived":false,"fork":false,"pushed_at":"2024-09-13T13:50:21.000Z","size":238,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-17T00:51:15.179Z","etag":null,"topics":["calander","day-planner","goal-tracking","goals","habit-tracking","notes","pomodoro-timer","prioritized-planning","productivity","simple-notes","todo","todolist"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rayan2162.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-10T03:09:46.000Z","updated_at":"2024-09-13T13:51:46.000Z","dependencies_parsed_at":"2024-09-14T02:31:11.655Z","dependency_job_id":null,"html_url":"https://github.com/rayan2162/my-day-management-app","commit_stats":null,"previous_names":["rayan2162/my-day-management-app"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rayan2162%2Fmy-day-management-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rayan2162%2Fmy-day-management-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rayan2162%2Fmy-day-management-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rayan2162%2Fmy-day-management-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rayan2162","download_url":"https://codeload.github.com/rayan2162/my-day-management-app/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250517937,"owners_count":21443862,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["calander","day-planner","goal-tracking","goals","habit-tracking","notes","pomodoro-timer","prioritized-planning","productivity","simple-notes","todo","todolist"],"created_at":"2024-11-10T09:27:07.333Z","updated_at":"2026-01-04T11:02:24.726Z","avatar_url":"https://github.com/rayan2162.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# My Life Management App\n\n\u003e This is a full functioning prototype. Currently at v1.0.0. If you have suggestions or improvements please send an email or open an issue on GitHub. Thank you!\n\n### My Life Management App is a comprehensive, minimalist productivity tool designed to help you organize and streamline your daily tasks and long-term goals. Built with simplicity in mind, this application integrates various productivity methodologies and tools into an desktop app\n\n---\n\n![Alt text](page.png \"Title\")\n\n## Features\n\n- **Calendar**: Integrated calendar view.\n- **To-Do List**: Organize your tasks with to-do list.\n- **Important List**: Track important tasks.\n- **Habit Tracker**: Develop and maintain positive habits by tracking.\n- **Notes**: Keep all your thoughts, ideas, and information in one place.\n- **Pomodoro Timer**: Boost your productivity with the Pomodoro technique.\n- **Work tracker**: Prioritize your tasks using the work tracker.\n\n## Download\n\n**Download the Latest Windows (.exe) Release**:\n\n- Visit the [Releases page](https://github.com/rayan2162/my-day-management-app/releases/tag/v_1.0.0) to download the latest version of the application.\n\n## Installation\n\n**Install from the source code.**\n\n1. **Clone the Repository**:\n\n    ```bash\n    git clone https://github.com/rayan2162/my-day-management-app.git\n    ```\n\n    **Navigate to the Project Directory**:\n\n    ```bash\n    cd my-life-management-app\n    ```\n\n2. **Install Dependencies**:\n\n    Make sure you have Node.js installed. Install the dependencies using:\n\n    ```bash\n    npm install\n    ```\n\n3. **Run the Application**:\n\n    Start the application using Electron:\n\n    ```bash\n    npm start\n    ```\n\n## Create Package\n\nFor creating an installer or executable file, using electron-packager:\n\n```bash\nnpm install electron-packager --save-dev\n```\n\nPackage this app:\n\n```bash\nnpx electron-packager . my-day-management-app --platform=win32 --arch=x64\n```\n\nThis command creates a my-day-management-app-win32-x64 folder containing your packaged app.\n\n## Create Installer\n\nUsing electron-builder (for more advanced options and auto-updating):\n\n```bash\nnpm install electron-builder --save-dev\n```\n\nAdd Build Scripts to `package.json`:\n\n```json\n\n\"scripts\": {\n    \"start\": \"electron .\",\n    \"dist\": \"electron-builder\"\n},\n\"build\": {\n    \"appId\": \"com.mydaymanagement.app\",\n    \"productName\": \"My Day Management\",\n    \"files\": [\n        \"index.html\",\n        \"styles.css\",\n        \"script.js\",\n        \"main.js\",\n        \"preload.js\",\n        \"alarm.mp3\",\n        \"logo.ico\"\n    ]\n}\n```\n\nCreate Installer:\n\n```bash\nnpm run dist\n```\n\nThis command creates an installer or executable file for your platform.\n\n## License\n\nThis project is licensed under the MIT License.\n\n### Thank you for using My Life Management App\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frayan2162%2Fmy-day-management-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frayan2162%2Fmy-day-management-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frayan2162%2Fmy-day-management-app/lists"}