3

我有一个 ruby​​ 应用程序,它依赖于我构建的几个 Web 服务。

首先,我有以下 Procfile:

mondodb: /home/dwaynemac/mongodb/bin/mongod 
accounts: ./script/start_accounts.sh
contacts: ./script/start_contacts.sh
activity: ./script/start_activity_stream.sh
web: ./script/start.sh

每个 start_xxx.sh 脚本都执行以下操作:

cd ../activity_stream; bundle exec unicorn -p 3003 -c ./config/unicorn.rb

如果我手动运行这些前一行 activity_stream 运行正常。但是当从工头那里跑出来时,一些宝石是无法识别的。好像捆绑包没有正确构建。

示例错误:

activity_stream/config/boot.rb:2:in `require': no such file to load -- grape (LoadError)
4

2 回答 2

6

使用分包商 gem更改工作目录:

image_fallback: subcontract -d lib/rack/img_fallback/ -- bundle exec unicorn -c unicorn.conf config.ru
于 2012-11-01T03:02:11.410 回答
1

您必须为要启动的每个应用程序使用新的 bash shell。

# Procfile
app1: sh -c 'cd path/to/app1 && bundle exec rackup config.ru -p $PORT'
app2: sh -c 'cd path/to/app2 && bundle exec rackup config.ru -p $PORT'

然后使用工头

foreman start --procfile path/to/Procfile

更多信息在这里http://www.seanbehan.com/how-to-boot-up-multiple-sinatra-applications-at-the-same-time-with-foreman

于 2013-10-15T23:33:26.713 回答