Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 heroku 上创建一个计划任务,该任务将为应用程序设置一个环境变量。我将如何设置这个环境变量?有没有办法从计划任务中调用 heroku config:add ?(基于 Ruby 的应用程序。)
解决了它:
需要'heroku-api'
heroku.put_config_vars(APP, KEY => '值')
您必须使用 heroku.rb gem ( https://github.com/heroku/heroku.rb ) 并从您的任务中调用它来设置变量。