Skip to main content

Integrating Django with Express Gateway

Project description

===========================
Express Gateway With Django
===========================
Integrating Django with Express Gateway

------------
Requirements
------------
- Python 3 or later
- Django 2 or later
- Django Rest Framework 3.7 or later
- Requests 2.19 or later

------------
Installation
------------

Install with pip

.. code-block:: bash

$ pip install django_express_gateway

---------------
Getting Started
---------------
Add `express_gateway` to your `INSTALLED_APPS`

.. code-block:: python

INSTALLED_APPS = [
...
'express_gateway',
]

Add authentication to DRF default authentication settings

.. code-block:: python

REST_FRAMEWORK = {
'DEFAULT_AUTHENTICATION_CLASSES': (
'express_gateway.authentications.AuthUserAuthentication',
'rest_framework.authentication.SessionAuthentication',
'rest_framework.authentication.BasicAuthentication',
),
...
}

Finally add the configuration for Centralize Authentication System.

.. code-block:: python

# Config data should get from environment variable
EXPRESS_GATEWAY = {
'URL': 'https://mycas-server.com',
'API_KEY': 'testingApiKey',
'ENDPOINTS': {
'register': '/auth/user/
'token': '/auth/token/',
}
}


=======
History
=======

0.0.0 (2018-07-31)
------------------

* First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_express_gateway-0.0.1.tar.gz (7.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page