Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 402 Bytes

README.rst

File metadata and controls

21 lines (14 loc) · 402 Bytes

gitlean

gitlean is a simple Django app to get and store data from Gitlab.

Detailed documentation is in the "docs" directory.

Quick start

  1. Add "gitlean" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'gitlean',
    ]
    
  2. Include the gitlean URLconf in your project urls.py like this:

    url(r'^gitlean/', include('gitlean.urls')),