我怎样才能建立一个“好的”? 卡皮斯特拉诺部署?
如何在 cap:deploy
上设置一个好的索引?
我希望远程服务器能够像这样使用 cp 命令:
nice -n 19 cp ...
How could I setup a nice indice on cap:deploy
?
I want the remote server to nice the cp
commands like so:
nice -n 19 cp ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不确定cp。 你不用SCM吗?
我尝试了我的设置(我使用 subversion),这似乎有效。 在deploy.rb中,添加:
如果您不使用SCM,似乎会更困难,您必须在deploy/scm/none.rb。
Not sure about cp. Don't you use an SCM?
I tried with my setup (I use subversion) and this seems to work. In deploy.rb, add:
It seems somewhat more difficult if you don't use an SCM, you'll have to overload checkout() in deploy/scm/none.rb.
对于那些想要完成资产:预编译任务的人来说,这是一项非常耗时的任务,以下内容对我有用。
请注意,这使得每个
rake
任务都变得很好。 例如rake db:migrate
。这最初摘自以下帖子(日语)。 http://d.hatena.ne.jp/nekonokataomoi/20140819/1408443332
For those who wants to nice
assets:precomile
task, the very time consuming task, following worked for me.Note that this makes every
rake
task to be niced. E.g.rake db:migrate
.This was originally taken from following post (Japanese). http://d.hatena.ne.jp/nekonokataomoi/20140819/1408443332