Formatting
This commit is contained in:
parent
88c94acd93
commit
266bf0b368
@ -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')
|
||||
|
Loading…
Reference in New Issue
Block a user