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.

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?

share|improve this question

3 Answers

You can set up an entry in your urls.py and just check if debug is true. This would keep it from being served in production. I think you can just do similar to static media.

if settings.DEBUG:
    urlpatterns += patterns('',
        (r'^favicon.ico$', 'django.views.static.serve', {'document_root': '/path/to/favicon'}),
    )

You also could just serve the favicon from your view.:

from django.http import HttpResponse

def my_image(request):
image_data = open(“/home/moneyman/public_html/media/img/favicon.ico”, “rb”).read()
return HttpResponse(image_data, mimetype=”image/png”)
share|improve this answer
I had marked this as correct, but on closer inspection it doesn't actually work. django.views.static.serve will only serve directories, not single files. – knite Jun 24 '12 at 18:44
up vote 1 down vote accepted

From the docs:

from django.conf.urls.static import static

urlpatterns = patterns("",
    # Your stuff goes here
) + static('/', document_root='static/')

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.

share|improve this answer

Well, you can create your own loader.py file, which loads settings you want to override. Loading this file should look like this:

try:
    execfile(os.path.join(SETTINGS_DIR, 'loader.py'))
except:
    pass

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.