Skip to content

Latest commit

 

History

History
25 lines (13 loc) · 412 Bytes

File metadata and controls

25 lines (13 loc) · 412 Bytes

django-eventlog

A simple example to show how simple log can be maintained in Django.

Install the required packages using the following commands:

pip install eventlog

Add eventlog to your INSTALLED_APPS setting:

INSTALLED_APPS = (

#third-party apps
'eventlog',

)

Run the migrations and server:

python manage.py makemigrations

python manage.py migrate

python manage.py runserver