vote up 0 vote down star

I am using Lighttpd + FastCGI + Django on a dev machine. I start FastCGI server via manage.py's command line option.

Problem is that I do make changes to sources quite often and I need to get FastCGI to pick up those changes automatically, just as "./manage.py runserver" does.

Is there a command-line option for that, perhaps, or any other solutions?

flag

63% accept rate

1 Answer

vote up 2 vote down

Have you looked at the code in the runserver part of manage.py that does the monitoring? I see no reason you could not just copy-paste that code into a custom manage.py script and set it to run the lighty restart command when changes were detected.

Alternatively, you could run a separate python program that did the restart using a package like pyinotify:

http://trac.dbzteam.org/pyinotify

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.