使用nodejs进行heroku部署失败

2024-02-21

我正在尝试将本地文件推送到 heroku 并遇到以下错误。 我的代码在github https://github.com/asimkh/apps/tree/haz/

有人可以帮我吗?谢谢

$ heroku buildpacks:set heroku/nodejs
Buildpack set. Next release on haz will use heroku/nodejs.
Run git push heroku master to create a new release using this buildpack.
$ git push heroku master
Counting objects: 693, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (500/500), done.
Writing objects: 100% (693/693), 63.10 MiB | 2.54 MiB/s, done.
Total 693 (delta 220), reused 639 (delta 171)
remote: Compressing source files... done.
remote: Building source:
remote: 
remote: -----> Using set buildpack heroku/nodejs
remote: 
remote:  !     Push rejected, failed to detect set buildpack heroku/nodejs
remote: More info: https://devcenter.heroku.com/articles/buildpacks#detection-failure
remote: 
remote: Verifying deploy....
remote: 
remote: !   Push rejected to haz.
remote: 
To https://git.heroku.com/haz.git
 ! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'https://git.heroku.com/haz.git'
$ 

对于 package.json

{
  "name": "haz",
  "version": "1.0.0",
  "description": "Hazzir: An Ionic project",
  "private": "true",
  "dependencies": {
    "express": "^4.13.3"    
  },
  "main": "serve.js",
  "scripts": {
    "start": "node serve.js",
    "postinstall": "bower install && grunt build",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "engines": {
      "node": "4.1.2",
      "npm": "3.4.0"
    },

  "keywords": [
    "Haz",
    "product"
  ],
  "author": "Asim Khan",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/asimkh/apps/issues"
  },
  "homepage": "https://github.com/asimkh/apps#readme"
}

我在本地测试,应用程序正在使用express在端口5000运行

var express = require('express'),
    app = express();

app.use(express.static('www'));

// CORS (Cross-Origin Resource Sharing) headers to support Cross-site HTTP requests
app.all('*', function(req, res, next) {
    res.header("Access-Control-Allow-Origin", "*");
    res.header("Access-Control-Allow-Headers", "X-Requested-With");
    next();
});

// API Routes
// app.get('/blah', routeHandler);

app.set('port', process.env.PORT || 5000);

app.listen(app.get('port'), function () {
    console.log('Express server listening on port ' + app.get('port'));
});

我在这里看到一些问题

1)你需要一个 procfile -https://devcenter.heroku.com/articles/getting-started-with-nodejs#define-a-procfile https://devcenter.heroku.com/articles/getting-started-with-nodejs#define-a-procfile

2) 您没有在 package.json 中指定引擎

"engines": {
  "node": "0.10.x"
},

看这里-https://discussion.heroku.com/t/the-official-node-js-buildpack-is-going-on-a-diet/100 https://discussion.heroku.com/t/the-official-node-js-buildpack-is-going-on-a-diet/100

3) 您已承诺node_modules目录到 git.您应该能够使用下载包npm install(这就是你的packages.json文件用于)

删除该目录,并将删除提交到git。 然后,创建一个.gitignore文件。将以下行添加到您的.gitignore file:

node_modules

将此 .gitignore 文件提交到您的存储库。

Git 现在会忽略你的node_modules_目录

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

使用nodejs进行heroku部署失败 的相关文章

随机推荐