2

所以我尝试使用这个加载一个带有空白帆模板的超级简单演示

https://github.com/danielkennedy/sailsjs-demo

$ sudo npm install sails -g
$ sails new sailsjs-demo
$ cd sailsjs-demo

修改config/local.js

port: process.env.VCAP_APP_PORT || 1337

如果我这样做cf push -c "sails lift" -m 150M my-sailsdemo并进出my-sailsdemo.cfapps.io浏览my-sailsdemo.cfapps.io:1337器,则什么也没有,浏览器一直在旋转。

然后我访问了这个网站

https://github.com/cloudfoundry/nodejs-buildpack

并将命令行更改为

cf push -c "sails lift" -m 150M -b https://github.com/cloudfoundry/buildpack-nodejs.git my-sailsdemo

它仍然是同样的问题。

尽管该应用程序运行良好。

我假设 node.js 或sails.js 没有正确加载。我错过了什么?

4

1 回答 1

0

结果我错过了创建 manifest.xml 文件。我认为这是可选的。基本错误。

于 2015-09-27T14:22:27.040 回答