Skip to content

kkannan1982/django-auth-gitlab

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django-GitLab-Auth - GitLab authentication support for Django

This is a Django login view that authenticates against GitLab.

Use it if you own a single GitLab instance that you want to use as a OAuth Authentication Server between multiple apps.

See also django-auth-oidc.

Requirements

  • Python 3.6+. Python 2 is not supported, and won’t ever get supported.
  • Django 1.10+

Installation

pip install django-gitlab-auth

settings.py

INSTALLED_APPS += ['django_gitlab_auth']

urls.py

urlpatterns += [
    url(r'^accounts/login/', include('django_gitlab_auth.urls')),
]

Configuration

GitLab

App's redirect URI: http(s)://app-domain/accounts/login/callback

App's environment variables

  • GITLAB_SERVER - Gitlab Server URL - with trailing slash.
  • GITLAB_CLIENT_ID - Client ID received from GitLab
  • GITLAB_CLIENT_SECRET - Client secret received from GitLab

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%