I'm trying to follow these instructions to enable static files in my Django project. I have
STATIC_URL = '/static/'
in my settings.py file. I have 'django.contrib.staticfiles',
added to the INSTALLED_APPS = (...)
part
I created a folder mysite/static/mysite
and put my files there. But after I run the server, I cannot access my files at http://127.0.0.1:8000/static/mysite/style.css
.
What I have done wrong?