{"id":28942823,"url":"https://github.com/taurusolson/django-git","last_synced_at":"2026-05-11T07:49:58.086Z","repository":{"id":49700305,"uuid":"62004543","full_name":"TaurusOlson/django-git","owner":"TaurusOlson","description":"A django application to manage Git projects","archived":false,"fork":false,"pushed_at":"2021-06-10T19:48:31.000Z","size":53,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-24T10:50:34.982Z","etag":null,"topics":["django","git"],"latest_commit_sha":null,"homepage":null,"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/TaurusOlson.png","metadata":{"files":{"readme":"README.rst","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}},"created_at":"2016-06-26T19:19:46.000Z","updated_at":"2020-04-01T15:55:12.000Z","dependencies_parsed_at":"2022-09-26T20:21:04.095Z","dependency_job_id":null,"html_url":"https://github.com/TaurusOlson/django-git","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TaurusOlson/django-git","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TaurusOlson%2Fdjango-git","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TaurusOlson%2Fdjango-git/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TaurusOlson%2Fdjango-git/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TaurusOlson%2Fdjango-git/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TaurusOlson","download_url":"https://codeload.github.com/TaurusOlson/django-git/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TaurusOlson%2Fdjango-git/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261410621,"owners_count":23154090,"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":["django","git"],"created_at":"2025-06-23T04:04:40.739Z","updated_at":"2026-05-11T07:49:58.077Z","avatar_url":"https://github.com/TaurusOlson.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"django-git\n==========\n\n**django-git** is a simple Django app to:\n\n- show all the Git projects stored in a local directory\n- give a detail view of each project (dashboard)\n- number of commits \n- number of days since the last commit \n- number of hours spent on the project \n- when the commits were made \n\n\nTable of contents\n-----------------\n\n* `Installation`_\n* `Quick start`_\n* `Contribute`_\n* `Tests`_\n* `License`_\n\n\nInstallation\n------------\n\nInstall with pip::\n\n    pip install dj-git\n\n\nRequirements:\n\n* Python 3\n* Django 1.9\n* pygit2 \n* pygal\n* pytz\n\n\nQuick start\n-----------\n\n1. In settings.py, add 'git' to your INSTALLED_APPS like this::\n\n    INSTALLED_APPS = [\n        ...\n        'git',\n    ]\n\nand specify the path to your Git repositories::\n\n    PROJECTS_DIR = \"path/to/git_repositories\"\n\nIf necessary, set your database configuration. For example, for PostgreSQL::\n\n    DATABASES = {\n        'default': {\n            'ENGINE': 'django.db.backends.postgresql_psycopg2',\n            'NAME': '\u003cdbname\u003e',\n            'USER': '\u003cusername\u003e',\n            'HOST': '\u003chost\u003e'\n        }\n    }\n\n2. In urls.py, include the git URLconf in your project this::\n\n    from django.conf.urls import url, include\n\n    urlpatterns = [\n        ...\n        url(r'^git/', include('git.urls')),\n    ]\n\n3. Run the following command to create the git models::\n   \n    python manage.py migrate \n   \n4. Update the Git projects::\n\n    python manage.py updategitprojects\n\n5. Start the development server::\n\n    python manage.py runservser\n   \nand visit http://127.0.0.1:8000/admin/\n\n6. Visit http://127.0.0.1:8000/git to see your Git projects\n\n\nTests\n-----\n\nRun the tests with::\n\n    python runtests.py\n\n\nContribute\n----------\n\nThe project is still in its early stage. There are probably many aspects to\nimprove and bugs to fix.\nFeel free to send pull requests.\n\n\nLicense\n-------\n\nMIT. See LICENSE for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaurusolson%2Fdjango-git","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftaurusolson%2Fdjango-git","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaurusolson%2Fdjango-git/lists"}