Hot deployment using mod_wsgi, python and django on Apache

I installed Apache server with mod_wsgi, python_sql, mysql and django. Everything works fine, except for the fact that if I make some code changes, they do not reflect me, although I'm sure everything is compiled on the fly when it comes to python / mod_wsgi.

I need to close the server and go back to see the changes.

Can someone tell me how a hot deployment can be done using the above setup?

Thanks,

Neeraj

+4
source share
2 answers

This applies to the mod_wsgi documentation. Cm:

http://code.google.com/p/modwsgi/wiki/ReloadingSourceCode

+7
source

Just touching the wsgi file always worked for me.

+2
source

All Articles