feat: install django-oauth-toolkit to implement OpenID Connect #1

Merged
realaravinth merged 6 commits from realaravinth/mystiq-sso:wip-oidc into master 2022-08-22 15:01:07 +05:30
2 changed files with 3 additions and 1 deletions
Showing only changes of commit a3bf5cd652 - Show all commits

View File

@ -3,5 +3,6 @@ pipeline:
image: python
commands:
- pip install virtualenv
- virtualenv venv
- make env
- make lint
- make coverage

View File

@ -8,6 +8,7 @@ default: ## Run app
. ./venv/bin/activate && python manage.py runserver
env: ## setup environment
@-virtualenv venv
. ./venv/bin/activate && pip install -r requirements.txt
coverage: ## Generate test coverage report