I deployed a django app to heroku, using \"git push heroku master\" which worked absolutely fine.
I then created a second app on the same git using \"heroku create s
Eventually solved this using the below in my urls file - from this question: Heroku - Handling static files in Django app
from import settings urlpatterns += patterns('', (r'^static/(?P.*)$', 'django.views.static.serve', {'document_root': settings.STATIC_ROOT}), )