python - Django runserver, and s3boto backend -


django's "manage.py runserver" has wonderful ability magically gather altered css, js, , image files it's running. makes save changes-reload cycle incredibly fast when doing front-end development (css especially). it's wonderful.

however, we've moved heroku recently, , installed django-storages s3boto handle static files. works wonderfully too. however, "manage.py runserver" no longer automatically showing updated files. have run "manage.py collectstatic" -- works, adds step, , slows down development while wait collectstatic step upload files s3.

is there way old behavior of runserver back, while keeping django-storages?


Comments

Popular posts from this blog

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -