Skip to content

Commit

Permalink
Improve model-admin setup instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanofusai authored and kalekseev committed Sep 4, 2024
1 parent 7d541ae commit f7fa53a
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,15 @@ Collection of useful checks for Django Checks Frameworks

Install with `pip install django-extra-checks`

Add `extra_checks` to `INSTALLED_APPS`.
Add `extra_checks` to `INSTALLED_APPS` in your Django settings:
```py
INSTALLED_APPS = [
...,
"django.contrib.admin", # make sure this comes before 'extra_checks' if you plan to use the `model-admin` check
"extra_checks",
...
]
```

## Settings

Expand Down

0 comments on commit f7fa53a

Please sign in to comment.