103👍
Based on what you’ve posted so far, it looks like you’re following the docs for django.contrib.staticfiles
. I agree that the docs can be difficult to follow especially if one is new to django.
I believe the confusion stems from the fact that django.contrib.staticfiles
has two modes of operation:
- During the development phase where the development server is used, it dynamically searches for static files in predefined directories and make it available on
STATIC_URL
- For deployment, it assists in collating static files to a single directory (defined using
STATIC_ROOT
) so that the static files can be hosted using a webserver suited for static files. This collation is done usingpython ./manage.py collectstatic
.
Here’s a quick summary of how to get up and running. I haven’t had a chance to try it out so there may be mistakes. Hopefully this will help you get started and at the very least help you understand the docs. When in doubt, do refer to the docs.
Hosting static files on the development server
-
Make sure you have
'django.contrib.staticfiles'
inINSTALLED_APPS
-
Specify
STATIC_URL
. This will be the path where your static files will be hosted on.STATIC_URL = '/static/'
-
Make sure your files are in the correct directories. By default,
staticfiles
will look for files within thestatic/
directory of each installed app, as well as in directories defined inSTATICFILES_DIRS
. (This behaviour depends on backends listed inSTATICFILES_FINDERS
).
In your case, you’d probably want to specify your directory inSTATICFILES_DIRS
:STATICFILES_DIRS = ( 'C:/Users/Dan/seminarWebsite/static/', )
-
Make the view accessible by adding the following to the end of
urls.py
:from django.contrib.staticfiles.urls import staticfiles_urlpatterns urlpatterns += staticfiles_urlpatterns()
-
Make sure you have
DEBUG = True
insettings.py
.
That’s it.
If you run your dev server (./manage.py runserver
), you should be able to access your file via http://localhost:8000/static/images/vision.jpeg
(which serves C:/Users/Dan/seminarWebsite/static/images/vision/jpeg
).
Linking to static files in your templates
There are two ways to get a correct link for your static files – using the staticfiles template tag, and making STATIC_URL
accessible to your templates. Since you’ve attempted the latter, we’ll stick to that.
-
Make sure you have
'django.core.context_processors.static'
inTEMPLATE_CONTEXT_PROCESSORS
. If you haven’t redefinedTEMPLATE_CONTEXT_PROCESSORS
then there is nothing to do since it should be there by default. -
Make sure you use RequestContext when rendering your template. Example:
from django.template import RequestContext # ... def some_view(request): # ... return render_to_response('my_template.html', { "foo" : "bar", # other context }, context_instance = RequestContext(request))
You should now be able to use the following in your my_template.html
:
<a href="{{ STATIC_URL }}images/vision.jpeg" />
Hosting static files on production server.
If all the static files you need to serve are store in that one directory (C:/Users/Dan/seminarWebsite/static
), then you’re almost there. Simple configure your webserver to host that directory on /static/
(or whatever you set STATIC_URL
to) and you’re good to go.
If you have files scattered in different directories and/or app specific static files, then you’ll need to collate them.
-
Set
STATIC_ROOT
to the directory where you want to store the collated files. -
Run
./manage.py collectstatic
to do the collation. -
Configure your webserver to host the that directory (
STATIC_ROOT
) on/static/
(or whatever you setSTATIC_URL
to).
0👍
I’d like to share my reciept for a local development. It’s similar to Shawn Chin’s answer, but not required DEBUG=True
and special urlpatterns, which is more universal and clean as I think.
Points 1, 2, 3 are the same as in the answer, but the following are different:
- Serve URLs same way for all environments:
# main urls.py
urlpatterns = (
[
# URLs from apps are here
...
]
+ static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
+ static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
)
Relevant for Django 4.2
- [Django]-'collectstatic' command fails when WhiteNoise is enabled
- [Django]-PyMongo vs MongoEngine for Django
- [Django]-Get request.session from a class-based generic view