当我想在本地应用功能开关时,我会做
MY_FEATURE=1 rails s
我该如何在heroku上做到这一点?
这就是我将代码推送到heroku的方式...那么如何添加此MY_FEATURE=1
git push heroku master
我想Procfile中有事情要做,应该怎么做?
答案 0 :(得分:2)
您可以使用Web界面(您的应用程序->设置-> config vars)或通过heroku CLI将其设置为heroku中的配置变量,如下所示:
$N = 10;
$f = 1 - 2/($N+1);
$total = 0;
foreach $i (0..39) {
$value =
2 * 100.0 * (1 - $f) * ($f ** $i)
- 100.0 * (1 - $f) * (1 - $f) * ($i + 1) * ($f ** $i);
print "$i $value\n";
$total += $value;
}
print "# total $total (should approach 100)\n";
有关更多详细信息,请参见https://devcenter.heroku.com/articles/config-vars。