Installation
Install django-auto-gitlab using
pip:
pip install django-auto-gitlab
Add
auto_gitlabapp to theINSTALLED_APPSin Djangosettings.py:
INSTALLED_APPS = [
"...",
"auto_gitlab",
"...",
]
That’s it! Now you can include appropriate urls in the urls.py file and configure your GitLab connection.
Check out the Usage and Configuration sections to find out how to implement the package into your project.