{"id":26702936,"url":"https://github.com/benhyh/chronos","last_synced_at":"2026-05-19T06:06:58.854Z","repository":{"id":282645601,"uuid":"948247837","full_name":"benhyh/chronos","owner":"benhyh","description":"A desktop application to manage tasks and organize folders.","archived":false,"fork":false,"pushed_at":"2025-07-05T06:02:15.000Z","size":41891,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-06T01:04:44.430Z","etag":null,"topics":["python","pywebview","react","sqlite3"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/benhyh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null}},"created_at":"2025-03-14T01:58:20.000Z","updated_at":"2025-07-05T06:02:27.000Z","dependencies_parsed_at":"2025-07-06T01:14:53.788Z","dependency_job_id":null,"html_url":"https://github.com/benhyh/chronos","commit_stats":null,"previous_names":["benhyh/chronos"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/benhyh/chronos","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benhyh%2Fchronos","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benhyh%2Fchronos/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benhyh%2Fchronos/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benhyh%2Fchronos/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/benhyh","download_url":"https://codeload.github.com/benhyh/chronos/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benhyh%2Fchronos/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33204127,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T09:27:30.708Z","status":"online","status_checked_at":"2026-05-19T02:00:06.763Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["python","pywebview","react","sqlite3"],"created_at":"2025-03-27T03:17:59.246Z","updated_at":"2026-05-19T06:06:58.837Z","avatar_url":"https://github.com/benhyh.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Chronos \n\nA simple, user-friendly application for managing tasks, automating file organization, and scheduling tasks!\n\n## Features\n\n- **Task Management**: Create, view, and complete tasks\n- **File Organization**: Automatically organize files by extension\n- **Folder Watching**: Set up rules to automatically organize files when they change\n- **Task Scheduling**: Schedule tasks to be completed at specific times\n- **Data Storage**: Save tasks to JSON files or a SQLite database\n\n## Technology Stack\n\n- **Frontend**:\n  - React with TypeScript\n  - Vite for development and building\n  - Tailwind CSS for styling\n  - Radix UI for components\n\n- **Backend**:\n  - Python 3.11+ (recommended)\n  - PyWebView for desktop app framework\n  - SQLite for local data storage\n  - Pydantic for data validation\n\n## Prerequisites\n\n- **Python 3.11 or 3.12** (3.13+ may have package compatibility issues)\n- **Node.js 18+** and npm\n- **Git**\n\n## Setup Instructions \n\n### Backend Setup\n\n1. **Clone the repository**\n   ```bash\n   git clone \u003crepository-url\u003e\n   cd chronos\n   ```\n\n2. **Create and activate virtual environment**\n   ```bash\n   cd backend\n   python -m venv venv\n   \n   # Windows\n   venv\\Scripts\\activate\n   \n   # macOS/Linux\n   source venv/bin/activate\n   ```\n\n3. **Install Python dependencies**\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n### Frontend Setup\n\n1. **Install Node.js dependencies**\n   ```bash\n   cd ../frontend\n   npm install\n   ```\n\n## Running the Application\n\n### Development Mode\n\nYou need to run both frontend and backend servers:\n\n1. **Start the frontend dev server**\n   ```bash\n   cd frontend\n   npm run dev\n   ```\n   This starts the Vite development server on http://localhost:5173\n\n2. **Start the PyWebView application** (in a new terminal)\n   ```bash\n   cd backend\n   venv\\Scripts\\activate  # Windows\n   python src/dev_server.py\n   ```\n   This opens a PyWebView window that loads the frontend\n\n### Production Build\n\n1. **Build the frontend**\n   ```bash\n   cd frontend\n   npm run build\n   ```\n\n2. **Run the production application**\n   ```bash\n   cd ../backend\n   python build.py\n   ```\n\n## Project Structure\n\n```\nchronos/\n├── backend/\n│   ├── src/\n│   │   ├── api.py           # Main API interface\n│   │   ├── dev_server.py    # Development entry point\n│   │   ├── main.py          # Production entry point\n│   │   ├── task_manager.py  # Task management logic\n│   │   ├── storage.py       # Database operations\n│   │   └── ...\n│   ├── requirements.txt\n│   └── tasks.db            # SQLite database (auto-created)\n├── frontend/\n│   ├── src/\n│   │   ├── components/     # React components\n│   │   ├── lib/           # API interface and utilities\n│   │   └── ...\n│   ├── package.json\n│   └── ...\n└── data/\n    └── tasks.json         # JSON backup storage\n```\n\n## Environment Variables\n\n**No environment variables or API keys are required.** The application is completely self-contained and uses:\n- Local SQLite database for data persistence\n- Local file system operations for file organization\n- PyWebView bridge for frontend-backend communication\n\n## Feedback / Issues\n\nThe best way to contact me is @  bhyh.003@gmail.com - If you do reach out, I'm grateful for your feedback and I appreciate your time 💜","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenhyh%2Fchronos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbenhyh%2Fchronos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenhyh%2Fchronos/lists"}