Go to file
Benjamin Dauvergne 7de4b273df
gitea/authentic2-cut/pipeline/head This commit looks good Details
custom_settings: remove SESSION_ENGINE setting (#84539)
2023-12-11 10:19:13 +01:00
debian misc: remove redis specific code (#82579) 2023-10-19 10:58:36 +02:00
src/authentic2_cut custom_settings: remove SESSION_ENGINE setting (#84539) 2023-12-11 10:19:13 +01:00
tests tests: fix test test_a2_hook_manager_modify_table (#84483) 2023-12-08 12:04:14 +01:00
.git-blame-ignore-revs misc: update git-blame-ignore-revs to ignore quote changes (#79788) 2023-08-16 10:12:23 +02:00
.gitignore first commit 2017-05-29 15:55:07 +02:00
.pre-commit-config.yaml misc: import pre-commit configuration from authentic 2023-10-19 10:46:55 +02:00
COPYING first commit 2017-05-29 15:55:07 +02:00
Jenkinsfile ci: build deb package for bookworm (#78968) 2023-06-23 17:01:16 +02:00
MANIFEST.in MANIFEST.in: ne pas oublier les templates *.txt 2017-11-27 14:55:52 +01:00
README do not rely on pkg_resources (#46549) 2023-03-22 17:21:12 +01:00
check-migrations.sh do not rely on pkg_resources (#46549) 2023-03-22 17:21:12 +01:00
getlasso3.sh provide a py3-compliant tox.ini file (#41220) 2020-04-01 11:54:13 +02:00
pylint.sh tox.ini: refactor, add dj22 target 2020-05-15 18:20:16 +02:00
setup.py misc: apply double-quote-string-fixer (#79788) 2023-08-16 10:12:23 +02:00
tox.ini tox.ini: remove constraint on psycopg2-binary 2023-10-19 10:58:16 +02:00

README

authentic2-cut
==============

Authentic2 plugin for CUT

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

Install with `pip install authentic2-cut`

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.)

isort is used to format the imports, using those parameter:

    isort --profile black --line-length 110

pyupgrade is used to automatically upgrade syntax, using those parameters:

    pyupgrade --keep-percent-format --py37-plus

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

Settings
========

Register the plugin in your settings file.

  INSTALLED_APPS += ('sorl.thumbnail', 'authentic2_cut',)
  TENANT_APPS += ('sorl.thumbnail', 'authentic2_cut',)
  MIDDLEWARE += ('authentic2_cut.middlewares.CUTMiddleware',)

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/>.