dj-git 0.3

Creator: danarutscher

Last updated:

Add to Cart

Description:

djgit 0.3

django-git is a simple Django app to:

show all the Git projects stored in a local directory
give a detail view of each project (dashboard)
* number of commits
* number of days since the last commit
* number of hours spent on the project
* when the commits were made


Table of contents

Installation
Quick start
Contribute
Tests
License



Installation
Install with pip:
pip install dj-git
Requirements:

Python 3
Django 1.9
pygit2
pygal
pytz



Quick start

In settings.py, add ‘git’ to your INSTALLED_APPS like this:
INSTALLED_APPS = [
...
'git',
]


and specify the path to your Git repositories:
PROJECTS_DIR = "path/to/git_repositories"
If necessary, set your database configuration. For example, for PostgreSQL:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': '<dbname>',
'USER': '<username>',
'HOST': '<host>'
}
}

In urls.py, include the git URLconf in your project this:
from django.conf.urls import url, include

urlpatterns = [
...
url(r'^git/', include('git.urls')),
]

Run the following command to create the git models:
python manage.py migrate

Update the Git projects:
python manage.py updategitprojects

Start the development server:
python manage.py runservser


and visit http://127.0.0.1:8000/admin/

Visit http://127.0.0.1:8000/git to see your Git projects



Tests
Run the tests with:
python runtests.py


Contribute
The project is still in its early stage. There are probably many aspects to
improve and bugs to fix.
Feel free to send pull requests.


License
MIT. See LICENSE for more details.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.