如何使用heroku设置环境变量

如何使用heroku设置环境变量

本文介绍了如何使用heroku设置环境变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试通过以下命令行设置环境变量:

I'm trying to set an environment variable with this command line:

heroku config:set ENV=PRODUCTION

但是我有这个错误:

! -a,--app APP应用程序针对其运行命令

! -a, --app APP app to run command against

!查看有关--help

! See more help with --help

我的应用名称为disjaniredjangoaj96

my app name is disquairedjangoaj96

推荐答案

我认为您现在需要告诉heroku您想在哪个应用中设置env变量.

I think what you need now is to tell heroku in which app you want to set the env variable.

heroku config:set ENV=PRODUCTION --app disquairedjangoaj96

也许本指南可以帮助您 https://devcenter.heroku .com/articles/using-the-cli#app-commands

Maybe this guide can help you https://devcenter.heroku.com/articles/using-the-cli#app-commands

这篇关于如何使用heroku设置环境变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-01 21:17