{"id":46504005,"url":"https://github.com/andprov/fix_time","last_synced_at":"2026-03-06T14:28:13.180Z","repository":{"id":210963193,"uuid":"727864062","full_name":"andprov/fix_time","owner":"andprov","description":"Time tracker","archived":false,"fork":false,"pushed_at":"2024-05-22T18:30:27.000Z","size":306,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-05-22T18:59:50.139Z","etag":null,"topics":["django","docker","gunicorn","nginx","postgresql","python"],"latest_commit_sha":null,"homepage":"","language":"Python","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/andprov.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}},"created_at":"2023-12-05T18:24:58.000Z","updated_at":"2024-05-22T18:30:28.000Z","dependencies_parsed_at":"2023-12-05T19:44:18.192Z","dependency_job_id":null,"html_url":"https://github.com/andprov/fix_time","commit_stats":null,"previous_names":["andprov/fix_time"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/andprov/fix_time","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andprov%2Ffix_time","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andprov%2Ffix_time/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andprov%2Ffix_time/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andprov%2Ffix_time/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andprov","download_url":"https://codeload.github.com/andprov/fix_time/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andprov%2Ffix_time/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30180670,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T12:39:21.703Z","status":"ssl_error","status_checked_at":"2026-03-06T12:36:09.819Z","response_time":250,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["django","docker","gunicorn","nginx","postgresql","python"],"created_at":"2026-03-06T14:28:11.207Z","updated_at":"2026-03-06T14:28:13.144Z","avatar_url":"https://github.com/andprov.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FixTime\n\n[![License MIT](https://img.shields.io/badge/licence-MIT-green)](https://opensource.org/license/mit/)\n[![Code style black](https://img.shields.io/badge/code%20style-black-black)](https://github.com/psf/black)\n[![Python versions](https://img.shields.io/badge/python-3.9%20%7C%203.10%20%7C%203.11-blue)](#)\n[![Django versions](https://img.shields.io/badge/Django-4.2-blue?logo=django)](#)\n[![Nginx version](https://img.shields.io/badge/Nginx-1.22-blue?logo=nginx)](#)\n[![Postgres version](https://img.shields.io/badge/PSQL-14-blue?logo=postgresql)](#)\n\n\"Fix time\" - A time tracker that allows monitoring the time spent on tasks.\n\n\n## Features\n\nTime control\n![dashboard](https://github.com/andprov/fix_time/blob/main/tracker/static_front/img/dashboard.png)\n\nProject control\n![project](https://github.com/andprov/fix_time/blob/main/tracker/static_front/img/project.png)\n\nReport\n![report](https://github.com/andprov/fix_time/blob/main/tracker/static_front/img/report.png)\n\n\n## Installation\n\n### Running the project locally\n\nClone a repository:\n```shell\ngit clone git clone \u003chttps or SSH URL\u003e\n```\n\nGo to the project directory:\n```shell\ncd fix_time\n```\n\nCreate `.env` file:\n```shell\ntouch .env\n```\n\nTemplate for `.env` file:\n```shell\n# Django settings\nDEBUG=True\nSECRET_KEY=\u003cdjango_secret_key\u003e\nALLOWED_HOSTS=127.0.0.1;localhost;\u003cexample.com;xxx.xxx.xxx.xxx\u003e\n\n# DB\nPOSTGRES_USER=postgres\nPOSTGRES_PASSWORD=postgres\nPOSTGRES_DB=fixtime\nDB_HOST=db\nDB_PORT=5432\n\n# Superuser\nADMIN_USERNAME=admin\nADMIN_EMAIL=admin@admin.com\nADMIN_PASSWORD=admin\n```\n\nDeploy the application:\n```shell\ndocker compose -f docker-compose.dev.yml up -d\n```\n\n### Running a project on a remote server\nTo deploy to a remote server, you need to clone the repository to a local machine. \nPrepare and upload images to the Docker Pub.\n\nClone a repository:\n```shell\ngit clone git clone \u003chttps or SSH URL\u003e\n```\n\nGo to the project directory:\n```shell\ncd fix_time\n```\n\nCreate `.env` file:\n```shell\ntouch .env\n```\n\nTemplate for `.env` file:\n```shell\n# Django settings\nDEBUG=False\nSECRET_KEY=\u003cdjango_secret_key\u003e\nALLOWED_HOSTS=127.0.0.1;localhost;\u003cexample.com;xxx.xxx.xxx.xxx\u003e\n\n# SMTP\nEMAIL_HOST=\u003csmtp.example.com\u003e\nEMAIL_PORT=\u003cport\u003e\nEMAIL_HOST_USER=\u003cusername\u003e\nEMAIL_HOST_PASSWORD=\u003cpassword\u003e\n\n# DB\nPOSTGRES_USER=postgres\nPOSTGRES_PASSWORD=postgres\nPOSTGRES_DB=fixtime\nDB_HOST=db\nDB_PORT=5432\n\n# Docker images\nBACKEND_IMAGE=\u003cusername\u003e/tracker_back\nGATEWAY_IMAGE=\u003cusername\u003e/tracker_gateway\n\n# Superuser\nADMIN_USERNAME=admin\nADMIN_EMAIL=admin@admin.com\nADMIN_PASSWORD=admin\n```\n\nCreate docker images images:\n```shell\nsudo docker build -t \u003cusername\u003e/tracker_back tracker/\nsudo docker build -t \u003cusername\u003e/tracker_gateway gateway/\n```\n\nUpload images to Docker Hub:\n```shell\nsudo docker push \u003cusername\u003e/tracker_back\nsudo docker push \u003cusername\u003e/tracker_gateway\n```\n\nCopy the `.env` and `docker-compose.prod.yml` files to a remote server:\n```shell\nscp .env docker-compose.prod.yml \u003cusername\u003e@\u003cserver_address\u003e:/home/\u003cusername\u003e/\u003capp_name\u003e\n```\n\nDeploy the application on the server:\n```shell\nsudo docker compose -f docker-compose.prod.yml up -d\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandprov%2Ffix_time","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandprov%2Ffix_time","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandprov%2Ffix_time/lists"}