diff --git a/Readme.md b/Readme.md index 1dd8789..275787d 100644 --- a/Readme.md +++ b/Readme.md @@ -84,6 +84,7 @@ After that, download the desired release (probably the latest one) [from the rea Now configure your `settings.py` as follows: 1. Add the following apps to the django project + ```python INSTALLED_APPS = [ ... @@ -93,7 +94,9 @@ INSTALLED_APPS = [ 'django_taggit' ] ``` + 2. Set the URL's and Root-directories for file handling, for example + ```python STATIC_URL = '/static/' STATIC_ROOT = os.path.join(BASE_DIR, 'static_files') @@ -101,11 +104,15 @@ STATIC_ROOT = os.path.join(BASE_DIR, 'static_files') MEDIA_URL = '/uploads/' MEDIA_ROOT = os.path.join(BASE_DIR, 'uploads') ``` + 3. Set the user model (this will be changed in the next release) + ```python AUTH_USER_MODEL = 'lostplaces_app.Explorer' ``` + 4. Set the URL's for login, for example + ```python LOGIN_URL = reverse_lazy('login') LOGIN_REDIRECT_URL = reverse_lazy('lostplaces_home')