Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Have to Restart Apache When Using Django On Apache with mod_wsgi

I'm creating a web app with Django. Since I'm very familiar with Apache I setup my development environment to have Django run through Apache using mod_wsgi. The only annoyance I have with this is that I have to restart Apache everytime I change my code. Is there a way around this?

like image 580
joshwbrick Avatar asked Feb 28 '10 22:02

joshwbrick


1 Answers

mod_wsgi is great for production but I think the included server is better for development.

Anyway you should read this about automatic reloading of source code.

like image 185
Desintegr Avatar answered Oct 05 '22 23:10

Desintegr