I am trying to get an existing django app up and running, but the css or any other static files are not showing up. I get the error:
"GET /static/css/mycss.css HTTP/1.1" 404 50
In the settings the following values are used:
DJANGO_ROOT = dirname(dirname(abspath(__file__)))
SITE_ROOT = dirname(DJANGO_ROOT)
STATIC_ROOT = normpath(join(SITE_ROOT, 'assets'))
STATIC_URL = '/static/'
STATICFILES_DIRS = (
normpath(join(SITE_ROOT, 'static')),
)
The app contains a directory called "static". It is in the current directory structure:
my-django-project > my-django-project > static > css > mycss.css
When I hit the home url via localhost, I get the above 404 error.
What am I doing wrong?