{"id":19617784,"url":"https://github.com/nzambello/work-timer","last_synced_at":"2025-04-23T19:33:59.093Z","repository":{"id":91375163,"uuid":"601538904","full_name":"nzambello/work-timer","owner":"nzambello","description":"Time tracking app built with Remix, supports authentication, projects management, and monthly or custom reports","archived":false,"fork":false,"pushed_at":"2024-04-09T16:09:14.000Z","size":2511,"stargazers_count":5,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-30T02:51:09.253Z","etag":null,"topics":["docker","mantine","prisma","project-management","remix","remix-run","self-hosted","time-entries","time-tracker","time-tracking"],"latest_commit_sha":null,"homepage":"https://timer.nzambello.dev","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nzambello.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2023-02-14T09:30:37.000Z","updated_at":"2024-09-11T18:00:13.000Z","dependencies_parsed_at":"2024-04-09T16:42:52.331Z","dependency_job_id":"80681a5b-2f2c-4246-bceb-d73138c7a24d","html_url":"https://github.com/nzambello/work-timer","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nzambello%2Fwork-timer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nzambello%2Fwork-timer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nzambello%2Fwork-timer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nzambello%2Fwork-timer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nzambello","download_url":"https://codeload.github.com/nzambello/work-timer/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250499924,"owners_count":21440715,"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":["docker","mantine","prisma","project-management","remix","remix-run","self-hosted","time-entries","time-tracker","time-tracking"],"created_at":"2024-11-11T11:07:15.823Z","updated_at":"2025-04-23T19:33:59.070Z","avatar_url":"https://github.com/nzambello.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WorkTimer\n\n\u003cimg src=\"https://github.com/nzambello/work-timer/raw/main/public/logo.png\" width=\"100\" height=\"100\" alt=\"WorkTimer\" /\u003e\n\nTime tracking app built with Remix, supports authentication, projects management, and monthly or custom reports.\n\nBuilt for self-hosting: host it anywhere you want, and use it for free. Your time, your data.\n\nView on [DockerHub](https://hub.docker.com/r/nzambello/work-timer).\n\n## Table of contents\n\n- [Features](#features)\n- [Pre-built Docker image](#pre-built-docker-image)\n  - [Docker compose](#docker-compose)\n- [Custom deployments or development](#custom-deployment-or-development)\n  - [Tech stack](#tech-stack)\n  - [Running locally](#running-locally)\n  - [Running with Docker](#running-with-docker)\n  - [Multi-platform docker image](#multi-platform-docker-image)\n- [Screenshots](#screenshots)\n- [License](#license)\n\n## Features\n\n- Time entries management\n- Authentication\n- Multi-user support, with admin role\n- Projects management\n- Monthly or custom reports\n- Import/Export to CSV\n\n[Screenshots](#screenshots)\n\n## Pre-built Docker Image\n\n```bash\ndocker pull nzambello/work-timer\n```\n\nIf you want to use the pre-built Docker image, you can run it with:\n\n```bash\ndocker run -d -p 8080:8080 -v /path/to/data:/data/data.db nzambello/work-timer\n```\n\nIf you want to use different defaults, you can build your own image. See [Running with docker](#running-with-docker)\n\n### Docker compose\n\nBasic example:\n\n```yaml\nversion: '3.8'\n\nservices:\n  work-timer:\n    image: nzambello/work-timer\n    container_name: work-timer\n    restart: always\n    ports:\n      - 8080:8080\n    volumes:\n      - ./dockerData/work-timer:/data # Path to data for DB persistence\n```\n\nExample of docker-compose.yml with [Traefik](https://traefik.io/) as reverse proxy:\n\n```yaml\nwork-timer:\n  depends_on:\n    - watchtower\n  image: nzambello/work-timer\n  container_name: work-timer\n  restart: always\n  volumes:\n    - /dockerData/work-timer:/data # Path to data for DB persistence\n  labels:\n    - 'com.centurylinklabs.watchtower.enable=true'\n    - 'traefik.enable=true'\n    - 'traefik.http.routers.work-timer.rule=Host(`timer.YOURDOMAIN.com`)'\n    - 'traefik.http.routers.work-timer.entrypoints=websecure'\n    - 'traefik.http.routers.work-timer.tls.certresolver=letsencrypt'\n    - 'traefik.http.routers.work-timer.service=work-timer-service'\n    - 'traefik.http.services.work-timer-service.loadbalancer.server.port=8080'\n```\n\n## Custom deployment or development\n\n### Tech Stack\n\n- [Remix](https://remix.run)\n- [Prisma](https://prisma.io)\n- [SQLite](https://sqlite.org)\n- [Mantine](https://mantine.dev)\n- [Docker](https://docker.com)\n\n### Running Locally\n\n```bash\n# Clone the repo\ngit clone https://github.com/nzambello/work-timer.git\ncd work-timer\n\n# Install dependencies\nyarn install\n\n# Setup .env\ncp .env.example .env\nvim .env\n\n# Start the app\nyarn dev\n```\n\n### Running with Docker\n\n```bash\n# Clone the repo\ngit clone https://github.com/nzambello/work-timer.git\ncd work-timer\n\n# Setup .env\ncp .env.example .env\nvim .env\n\n# Build the image\ndocker built -t work-timer .\n\n# Start the app\ndocker run -p 127.0.0.1:8080:8080 work-timer\n```\n\n### Multi-platform Docker image\n\n```bash\ndocker buildx create --name mybuilder --driver docker-container --bootstrap --use # create a new builder and switch to it using a single command.\ndocker buildx build --platform linux/amd64,linux/arm64 -t nzambello/work-timer:latest --push .\n```\n\n## Screenshots\n\n### Light / Dark mode\n\n\u003cimg width=\"300\" src=\"https://github.com/nzambello/work-timer/raw/main/public/images/00-time-entries-light.png\" /\u003e\n\u003cimg width=\"300\" src=\"https://github.com/nzambello/work-timer/raw/main/public/images/01-time-entries-dark.png\" /\u003e\n\n### Time tracking\n\n\u003cimg width=\"500\" src=\"https://github.com/nzambello/work-timer/raw/main/public/images/02-new-time-entry.png\" /\u003e\n\n### Projects\n\n\u003cimg width=\"300\" src=\"https://github.com/nzambello/work-timer/raw/main/public/images/03-projects.png\" /\u003e\n\u003cimg width=\"300\" src=\"https://github.com/nzambello/work-timer/raw/main/public/images/04-new-project.png\" /\u003e\n\n### Reports\n\n\u003cimg width=\"500\" src=\"https://github.com/nzambello/work-timer/raw/main/public/images/05-reports.png\" /\u003e\n\n## License\n\n[Nicola Zambello](https://github.com/nzambello) © 2023\n\n[GNU GPLv3](https://github.com/nzambello/work-timer/raw/main/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnzambello%2Fwork-timer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnzambello%2Fwork-timer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnzambello%2Fwork-timer/lists"}