alexsilva / supervisor

Supervisor process control system for Windows
http://supervisord.org
Other
122 stars 27 forks source link

Possible to execute it and not install it as a service? #44

Closed klodoma closed 2 years ago

klodoma commented 2 years ago

I am looking to use this in Windows but only for a DEV environment, so I would like to execute it and not install it as a service. Is it possible?

Thanks.

alexsilva commented 2 years ago

Usually the supervisor runs like this python -m supervisor.supervisord -c {system-path}\\supervisord.conf The interactive mode (shell) is like this python -m supervisor.supervisorctl -c {system-path}\\supervisord.conf

http://supervisord.org/running.html#running-supervisord

A windows service, nothing more is a built-in supervisor. https://github.com/alexsilva/supervisor/blob/windows/supervisor/services.py#L257

klodoma commented 2 years ago

Thank you!