其他heroku环境变量是什么?

时间:2012-04-17 05:04:17

标签: web-services heroku environment-variables

设置服务器时,我注意到使用了环境变量process.env.PORT。还有其他类似的变量吗?我在哪里可以看到所有这些?

4 个答案:

答案 0 :(得分:89)

以下命令将显示所有环境变量,而不仅仅是heroku config中可见的那些

heroku run printenv

答案 1 :(得分:11)

heroku config未显示PORT。因此,如果您需要所有内容,则不完整。这将创建一个一次性的dyno并显示一切。

从这里开始:https://devcenter.heroku.com/articles/getting-started-with-nodejs#console

在一次性dyno中运行控制台,然后在>提示,键入“console.log(process.env)”:

$ heroku run node
Running `node` attached to terminal... up, run.4778
> console.log(process.env
... )
{ BUILDPACK_URL: 'https://github.com/MichaelJCole/heroku-buildpack-nodejs.git#wintersmith',
  TERM: 'xterm',
  SENDGRID_USERNAME: 'unicorns@heroku.com',
  COLUMNS: '80',
  DYNO: 'run.4778',
  PATH: '/app/bin:/app/node_modules/.bin:bin:node_modules/.bin:/usr/local/bin:/usr/bin:/bin',
  PWD: '/app',
  PS1: 'fairydust',
  LINES: '22',
  SHLVL: '1',
  HOME: '/app',
  SENDGRID_PASSWORD: 'ponies',
  PORT: '52031',
  _: '/app/bin/node' }
undefined

答案 2 :(得分:9)

命令是

heroku config

您可以在此处阅读更多内容https://devcenter.heroku.com/articles/config-vars

答案 3 :(得分:8)

请参阅https://devcenter.heroku.com/articles/config-vars:这里有一个命令可以告诉您环境变量是什么。

$ heroku config

看看它是否适合你。

编辑:上面链接的heroku文档似乎是错误的。试试这个:

$ heroku config -s --app <appname>