Ich bin neu in Django! Wenn ich den Befehl benutze, python manage.py collectstatic
erhalte ich diesen Fehler
django.core.exceptions.ImproperlyConfigured: You're using the staticfiles app without having set the STATIC_ROOT setting to a filesystem path
Aber ich kann den Server erfolgreich ausführen.
Meine statischen Dateideklarationen sind:
STATIC_ROOT = ''
STATIC_URL = '/static/'
STATICFILES_DIRS = (
('assets', os.path.join(PROJECT_DIR, '../static')),
)
und Debug wird auf true gesetzt
DEBUG = True
Wie kann ich das beheben? Ansonsten fehlen Installationspakete?