Installation

  1. Install django-auto-gitlab using pip:

pip install django-auto-gitlab
  1. Add auto_gitlab app to the INSTALLED_APPS in Django settings.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.