[Answer]-Apache no graceful in local development

1👍

Easiest is to just use Django’s development server: ./manage.py runserver

However, if you really have to run your code in Apache, then code reloading is described in here: http://code.google.com/p/modwsgi/wiki/ReloadingSourceCode

0👍

Your test.wsgi can be a tiny script that handles automatically reloading other modules which you can then change on the fly. You’d have to restart apache to see changes to test.wsgi though.

Leave a comment