Fedict authentication plugin for Authentic2
Go to file
Frédéric Péters 42b9781ee0 remove unnecessary logger in hook event (#53949) 2021-05-12 09:36:28 +02:00
debian debian: use PYBUILD_DISABLE to disable tests 2020-04-23 21:41:00 +02:00
src/authentic2_auth_fedict remove unnecessary logger in hook event (#53949) 2021-05-12 09:36:28 +02:00
.git-blame-ignore-revs misc: add black files/notes 2021-01-13 17:41:08 +01:00
.gitignore .gitignore 2016-04-10 14:21:33 +02:00
.pre-commit-config.yaml misc: add black files/notes 2021-01-13 17:41:08 +01:00
COPYING init repository with license file 2016-04-10 14:18:35 +02:00
Jenkinsfile build: update to use origin/main 2020-12-26 15:22:14 +01:00
MANIFEST.in ship js and css files 2016-05-27 13:48:56 +02:00
README misc: add black files/notes 2021-01-13 17:41:08 +01:00
setup.py trivial: apply black 2021-01-13 17:40:37 +01:00

README

authentic2-auth-fedict
======================

Authentic2 plugin to authenticate against the Belgian Federal Authentication
Service provided by Fedict.

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

Install with `pip install authentic2-auth-fedict`

Settings
========

Add `A2_AUTH_FEDICT_ENABLE = True` to your `local_settings.py` file and define
the django-mellon adapter:

  MELLON_ADAPTER = ('authentic2_auth_fedict.adapters.AuthenticAdapter',)

And appropriate django-mellon parameters (MELLON_PUBLIC_KEYS,
MELLON_PRIVATE_KEY, MELLON_IDENTITY_PROVIDERS).


Code Style
----------

black is used to format the code, using thoses parameters:

    black --target-version py37 --skip-string-normalization --line-length 110

There is .pre-commit-config.yaml to use pre-commit to automatically run black
before commits. (execute `pre-commit install` to install the git hook.)


License
-------

This program is free software: you can redistribute it and/or modify it under
the terms of the GNU Affero General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option) any
later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
details.

You should have received a copy of the GNU Affero General Public License along
with this program.  If not, see <http://www.gnu.org/licenses/>.