在Cloud9(c9.io)IDE上创建默认的meteor应用程序,添加twbs:bootstrap,&跑。结果:
Unexpected mongo exit code null. Restarting.
Can't start Mongo server.
下面是测试项目的输出,我创建了一个默认应用程序,添加了bootstrap并运行。
user:~/workspace $ meteor add twbs:bootstrap
Changes to your project's package version selections:
twbs:bootstrap added, version 3.3.5
twbs:bootstrap: The most popular front-end framework for developing responsive, mobile first projects on the web.
user:~/workspace $ meteor --port $IP:$PORT
[[[[[ ~/workspace ]]]]]
=> Started proxy.
=> Started MongoDB.
Unexpected mongo exit code null. Restarting.
Unexpected mongo exit code null. Restarting.
Unexpected mongo exit code null. Restarting.
Can't start Mongo server.
Killed
失败后,我从项目中删除了bootstrap并重新运行。
user:~/workspace $ meteor remove twbs:bootstrap
Changes to your project's package version selections:
twbs:bootstrap removed from your project
twbs:bootstrap: removed dependency
user:~/workspace $ meteor --port $IP:$PORT
[[[[[ ~/workspace ]]]]]
=> Started proxy.
=> Started MongoDB.
=> Started your app.
=> App running at: http://0.0.0.0:8080/
...并且流星项目成功启动。
有没有办法在Cloud9上使用bootstrap运行流星应用程序?