Install using pip:
pip install django-secux
Add to your Django project:
# settings.py
INSTALLED_APPS = [
...
'django_secux',
]
MIDDLEWARE = [
...
'django_secux.middleware.Minify',
]
Apply migrations:
python manage.py makemigrations django_secux
python manage.py migrate
Menu | Next |