I am new to django ! When I use the command python manage.py collectstatic I get this error
python manage.py collectstatic
django.core.exceptions.ImproperlyConfigured: You\'re usi
You must have to give path in STATIC_ROOT in settings.py where all your static files are collected as for example:-
STATIC_ROOT = "app-root/repo/wsgi/static" STATIC_URL = '/static/' STATICFILES_DIRS = ( ('assets', 'app-root/repo/wsgi/openshift/static'), )