Trying to push Vapor app on Heroku using CLI

I have a Vapor app that I want to click on Heroku. I used vapor heroku initto initialize the Heroku project. Now that he is on Heroku, I want to make changes to Heroku using vapor heroku push. But every time I run this command from the Vapor CLI, I get the following:

Error: spawnProcess

Can someone tell me why this might be unsuccessful or maybe point me in the right direction?

+4
source share
1 answer

This problem has appeared recently, and we do not know where it came from. In the meantime, you can follow this issue:

https://github.com/vapor/toolbox/issues/108

Bypass

push - git push heroku master. .

git push heroku master

, - !

+4

Source: https://habr.com/ru/post/1660740/


All Articles