[mod edit] This question is largely outdated since we released our static files support, which you'll find on the Web tab
Hi,
My settings file is in "home/<me>/Dropbox/code/mysite-tutorial01/mysite/" and my CSS and .js files are in "home/<me>/Dropbox/code/assets/".
My debug is True and in urls.py, I have a url pattern setup with works on localhost.
if settings.DEBUG:
urlpatterns += patterns('',
(r'^assets/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': settings.MEDIA_ROOT}),
)
I'm also importing static files (but I'm sure I'm not using it correctly)
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
urlpatterns += staticfiles_urlpatterns()
The static files for my admin work just fine But the static files for my app don't work. Please help, then I will be live!!!