Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 rails world 的新手,需要在守护进程模式下运行我的 rails 测试服务器。
我注意到有 aa -d 标志,但它对我不起作用..
rails -s -d
不应该是这样吗?
它应该是:
rails server --daemon # to kill the server kill `cat tmp/pids/server.pid` # to tail development logs for debugging tail -f log/development.log
值得尝试以下命令
$ rails s -d