Em Monday 11 February 2008 08:19:29 Glauco escreveu: > > linux: > you can schedule it in crontab > /etc/init.d/turbogears start | stop > > windows: > scheduler > you can launch it as service (i think for windows)
It is better to not use any scheduler here... It is not a good way to have applications started. What if the computer is turned off? You'll have to wait for a certain time to have it running again? Or you'll have to deal with periodic failures on starting the app because it is already running. Doing the right thing (daemon/service) is better. -- Jorge Godoy <[EMAIL PROTECTED]> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

