🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

shopcloud-django-authenticator

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

shopcloud-django-authenticator

A Module for single sign in

1.15.0
PyPI
Maintainers
2

Shopcloud-Django-Authenticator

Single Sign In from Shopcloud

Quickstart

pip3 istall shopcloud-django-authenticator
  • Add "authenticator" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = [
    ...
    'authenticator',
]
AUTHENTICATOR_KEY = os.environ.get('AUTHENTICATOR_KEY', 'DEV-KEY')

To generate a key use pwgen -s $1 64

  • Include the polls URLconf in your project urls.py like this::
path('authenticator/', include('authenticator.urls')),
  • Run python manage.py migrate to create the polls models.

  • Install custom Tags for Login Button

{% load tower_tags %}
{% tower_login request 'QYG69GK' %}

Release

$ rm -rf build dist
$ pip3 install wheel twine
$ python3 setup.py sdist bdist_wheel
$ twine upload dist/*

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts