Skip to content

Commit 9821b63

Browse files
committed
Add required installed django apps to README
1 parent 504637d commit 9821b63

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,14 @@ Add `datashow` to your `INSTALLED_APPS` in `settings.py`:
2323
```python
2424
INSTALLED_APPS = [
2525
...
26+
"django.contrib.auth",
27+
"django.contrib.contenttypes",
28+
"django.contrib.sessions",
29+
"django.contrib.humanize", # for number formatting
30+
...
31+
2632
'datashow',
33+
2734
...
2835
]
2936
```
@@ -40,7 +47,6 @@ urlpatterns = [
4047
]
4148
```
4249

43-
4450
## Settings
4551

4652
You can configure the following settings in your `settings.py`:

0 commit comments

Comments
 (0)