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.
- [Answer]-Django – site-wide music player
- [Answer]-Restricted set of nested fields in a django REST framework ModelSerializer
- [Answer]-Django creating relation
- [Answer]-Writing '-' in regular expression django url
- [Answer]-Django class based views, what to override to write to an excel file?
Source:stackexchange.com