From e775ede14c949c4fd4aa7a704685a468a9fc478e Mon Sep 17 00:00:00 2001 From: klonfish Date: Fri, 3 May 2019 23:18:37 +0200 Subject: [PATCH] Include complete path to the AppConfig in README This is now the preferred way: https://docs.djangoproject.com/en/2.2/ref/applications/ --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ab2d00c..00a2d10 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,8 @@ django-admin startproject PROJECT_NAME ln -sr bam PROJECT_DIRECTORY/bam ``` - 4. Add `bam` to `INSTALLED_APPS` in the project's `settings.py`. + 4. Add `bam.apps.BamConfig` to `INSTALLED_APPS` in the project's + `settings.py`. 5. Set `bam.hashers.LDAPPBKDF2PasswordHasher` as the first item of the `PASSWORD_HASHERS` array in the project's `settings.py`.