无法推送到Heroku - 推送拒绝,无法编译Node.js应用程序

时间:2018-05-02 12:14:06

标签: node.js heroku deployment

我不知道为什么但是推动Heroku是不可能的。 我没有找到错误:/。 谢谢你的帮助^^。

这是React客户端的明确应用程序(使用指南针)

BuildPack - > https://github.com/stephanmelzer/heroku-buildpack-nodejs-grunt-compass.git

function(){
              print("R is the most wonderful thing in the world")
}

2 个答案:

答案 0 :(得分:0)

您必须在node_modules

中添加.gitignore依赖项文件夹({{1}})

here

答案 1 :(得分:-1)

请按照以下步骤将数据推送到heroku。

  1. heroku创建" app name"
  2. heroku git:clone -a"创建应用名称"
  3. heroku git:remote -a" app name"
  4. git add。
  5. git commit -am"初始提交"
  6. git pull heroku master
  7. git push heroku master
  8. 在package.json中添加

    "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "start": "node app.js"
    

    } 有关详细信息,请访问 - https://www.heroku.com/nodejs