我正在编写一个在Heroku上一次性运行的应用程序。所以我的Procfile是空的,我使用
在Heroku上运行heroku run node index.js
出于开发目的,我想在本地运行它,它必须自动读取.env文件。但
Heroku local
尝试读取Procfile然后什么都不做。
如何使用heroku cli在本地运行我的应用并自动读取.env?
答案 0 :(得分:0)
使用require 'test/unit'
puts 'test'
class ExampleTests < Test::Unit::TestCase
def test_pass
puts 'test pass'
assert_equal(1, 1, 'Test should work')
end
def test_fail
puts 'test fail'
assert_equal(2, 0, 'Test should fail')
end
end