Django implementation of CATS
Find a file
Jan Dittberner d2ac11f238 Setup RemoteUserAuthentication
- user will be authenticated using the reverse proxy in front of the
  CATS application
2024-09-18 18:20:59 +02:00
django_cats Setup RemoteUserAuthentication 2024-09-18 18:20:59 +02:00
.gitignore Ignore temporary and editor files 2024-09-17 17:39:15 +02:00
COPYING Add basic project files 2024-09-17 17:10:59 +02:00
manage.py Add generated Django project code 2024-09-17 17:12:05 +02:00
poetry.lock Add basic project files 2024-09-17 17:10:59 +02:00
pyproject.toml Add basic project files 2024-09-17 17:10:59 +02:00
README.md Add basic project files 2024-09-17 17:10:59 +02:00

CAcert Assurer Training System - CATS

This is a Django port of the original CATS. The goal of this port is to use current best practices in software engineering and to reduce boilerplate by using a properly maintained web framework.

Development setup

The project uses Poetry for dependency management. On a Debian 12 system you can use the following commands to install poetry and required dependencies:

sudo apt update
sudo apt install -y build-essential pkg-config default-libmysqlclient-dev python3-dev pipx
pipx install poetry
pipx ensurepath

If pipx ensurepath recommends to open a new shell, do it.

git clone https://code.cacert.org/cacert/django-cats.git
cd django-cats
poetry install

License

CATS Copyright (C) CAcert

This program is free software: you can redistribute it and/or modify it under the terms of the GNU 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 General Public License for more details.

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