mirror of
https://github.com/jazzband/django-auditlog.git
synced 2026-05-08 23:54:43 +00:00
- Add Django project configuration (settings, urls, wsgi, asgi) - Add demo app with basic structure - Add requirements.txt with Django and auditlog dependencies - Add management script for running the sample project
6 lines
140 B
Python
6 lines
140 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class DemoConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "demo"
|