How can I serve favicon.ico in development? I could add a route in my urlconf, but I don't want that route to carry over to the production environment. Is there a way to do this in local_settings.py?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
You can set up an entry in your
You also could just serve the favicon from your view.:
|
||||
|
|
From the docs:
There doesn't appear to be a way to serve a single static file, but at least this helper function is a wrapper which only works when DEBUG = True. |
|||
|
|
|
Well, you can create your own loader.py file, which loads settings you want to override. Loading this file should look like this:
and be added at the end of settings.py. This settings should not be commited into production server, only should appear on development machines. If you are using git, add loader.py into .gitignore. |
|||
|
|

