Getting Started
Install the package: Follow the installation instructions above.
Configure the middleware: Add the middleware to your Django settings as shown in the configuration section.
Run your Django application: The middleware will automatically log HTTP requests and responses based on the configuration.
Run Migrations: - If you are using a separated database for logging, run:
python3 manage.py migrate dj_access_logger --database=logging
If you are using the same database, run:
python3 manage.py migrate dj_access_logger