使用foreman / heroku facebook app获取rack_env的问题

时间:2012-03-19 22:26:23

标签: ruby-on-rails facebook heroku foreman

很难正确完成本地设置。试图管理领班并解决问题:

 web: bundle exec thin -R config.ru start -p $PORT -e ${RACK_ENV:-development}
 RACK_ENV:"FACEBOOK_APP_ID=275479742529226"
 RACK_ENV:"FACEBOOK_SECRET=xxx"

运行“领班开始”

15:21:21 RACK_ENV.1  | process terminated
15:21:21 web.1       | started with pid 23406
15:21:21 system      | sending SIGTERM to all processes
15:21:21 RACK_ENV.1  | started with pid 23407
15:21:21 system      | sending SIGTERM to pid 23406
15:21:21 RACK_ENV.1  | started with pid 23408
 15:21:21 RACK_ENV.1  | /Users/mc/.rvm/gems/ruby-  1.9.2-p290/gems/foreman-          
0.41.0/bin/foreman-runner: line 36: exec: "FACEBOOK_APP_ID=275479742529226": not found

显然我设置我的fb键完全不正确的env ..如果有人可以帮忙。我也尝试在根目录中设置.env文件,其中包含

FACEBOOK_APP_ID = 964173273189 FACEBOOK_SECRET = XXX

删除proc文件中的所有内容(我认为这是不正确的)并运行foreman,默认情况下它不应该在根目录中拾取.env文件吗?这没有证明任何运气。

  5:44:20 web.1     | started with pid 23705
  15:44:24 web.1     | missing env vars: please set FACEBOOK_APP_ID and FACEBOOK_SECRET         
  with your app credentials
  15:44:24 web.1     | process terminated
  15:44:24 system    | sending SIGTERM to all processes

由于

1 个答案:

答案 0 :(得分:11)

我认为问题不在于工头没有找到.env,而是Procfile的语法不正确。 :之后的Procfile中的每一行都应该在命令行上可执行。

使用以下内容创建Procfile

web: bundle exec thin -R config.ru start -p $PORT -e $RACK_ENV

并将您的.env文件设置为:

RACK_ENV=development
FACEBOOK_APP_ID=1234
FACEBOOK_SECRET=xyz

注意RACK_ENV var需要显式设置,而PORT则不需要,因为Foreman会自动设置它。