TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: How do you manage daemons/services for development?

1 点作者 jipumarino超过 13 年前
At the beginning of the day, I need to start passenger, mysqld, memcached, redis, and some resque workers for development. I will be adding more services, and the aliases I have set up will soon not be enough. How do you manage starting and stopping your development services?

1 comment

samarudge超过 13 年前
Supervisord<p>Command line client, web based UI and HTTP API. Everything you could need for monitoring, logging and restarting processes<p>It even has the ability to restart processes if/when they die. Example; in our development we can send a trigger to our application that just called exit 0; and restarts the application (useful for debugging)