在 Bluemix 中部署 ember 个应用程序

Deploy ember application in Bluemix

我正在尝试将现有的 ember-nodejs 应用程序部署到 bluemix 环境中。我尝试了以下步骤。

bluemix api https://api.ng.bluemix.net

bluemix login -u username -o org_name -s space_name

cf push app_name

我还用列表中的 ember build pack 尝试了上面的命令 兼容 CF build packs

cf push app_name -b https://github.com/cloudfoundry-community/cf-docs-contrib/wiki/Buildpacks

上传成功,但应用程序没有启动。是否有部署 ember-node js 应用程序的推荐方法?

更新

这是内存问题。我删除了其他 运行 应用程序并再次尝试 cf push 命令。节点模块已安装,应用程序也顺利启动。

根据用户的说法,这实际上是内存问题。一旦他停止了其他 运行 应用程序,他的节点模块就安装好了,应用程序开始了,没有任何进一步的错误。没有特定于在 Bluemix 环境中部署 ember-nodejs 应用程序的问题。