mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-03-17 06:30:27 +00:00
20 lines
975 B
ReStructuredText
20 lines
975 B
ReStructuredText
|
|
Installation
|
||
|
|
============
|
||
|
|
|
||
|
|
Installing Auditlog is simple and straightforward. First of all, you need a copy of Auditlog on your system. The easiest
|
||
|
|
way to do this is by using the Python Package Index (PyPI). Simply run the following command:
|
||
|
|
|
||
|
|
``pip install django-auditlog``
|
||
|
|
|
||
|
|
Instead of installing Auditlog via PyPI, you can also clone the Git repository or download the source code via GitHub.
|
||
|
|
The repository can be found at https://github.com/jjkester/django-auditlog/.
|
||
|
|
|
||
|
|
Adding Auditlog to your Django application
|
||
|
|
------------------------------------------
|
||
|
|
|
||
|
|
To use Auditlog in your application, just add ``'auditlog'`` to your project's ``INSTALLED_APPS`` setting and run either
|
||
|
|
``manage.py syncdb`` or perform a migration if you are using South or a comparable system.
|
||
|
|
|
||
|
|
If you want Auditlog to automatically set the actor for log entries you also need to enable the middleware by adding
|
||
|
|
``'auditlog.middleware.AuditlogMiddleware'`` to your ``MIDDLEWARE_CLASSES`` setting.
|