Skip to content

Commit

Permalink
Fix STATICFILES_DIRS cannot contain STATIC_ROOT
Browse files Browse the repository at this point in the history
  • Loading branch information
urbaniak committed Feb 28, 2016
1 parent f814558 commit 79f48ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pl/django_start_project/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Musimy także dodać ścieżkę do plików statycznych (dowiesz się więcej o p

```python
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
STATIC_ROOT = os.path.join(BASE_DIR, 'public', 'static')
```

## Ustawienie bazy danych
Expand Down

0 comments on commit 79f48ff

Please sign in to comment.