Skip to content

pombredanne/django-version-control

 
 

Repository files navigation

Latest PyPI version https://travis-ci.org/kuter/django-version-control.svg?branch=master https://coveralls.io/repos/github/kuter/django-version-control/badge.svg?branch=master

Django Version Control

Third-party app created with https://github.com/kuter/django-plugin-template-cookiecutter

Quick start

  1. Install version_control:
$ pip install version_control
  1. Add "version_control" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
    ...
    "version_control",
]
  1. Enable "version_control" in your settings module as follows:
MIDDLEWARE = [
    "version_control.middleware.VersionControlMiddleware"
]
  1. Install third-party modules

For projects running under git source control:

$ pip install GitPython

For mercurial projects:

$ pip install hglib  # python 3.x
$ pip install python-hglib  # python 2.7.x

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 89.9%
  • Makefile 4.8%
  • HTML 3.3%
  • CSS 2.0%