所以我尝试使用这个加载一个带有空白帆模板的超级简单演示
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 没有正确加载。我错过了什么?