テストに合格した後に Modulus にデプロイするための適切なセットアップ スクリプトを推奨できる人はいますか?
今私は使用しています:
nvm install 0.10.28
nvm use 0.10.28
curl -o meteor_install_script.sh https://install.meteor.com/
chmod +x meteor_install_script.sh
sed -i "s/type sudo >\/dev\/null 2>&1/\ false /g" meteor_install_script.sh
./meteor_install_script.sh
export PATH=$PATH:~/.meteor/
meteor --version
これは基本的に、interwebz の周りにコピーして貼り付けることができたものであり、自分が何をしているのかわかりません。
最後に、私のテスト パイプラインは次のとおりです。
meteor --test
CodeShip ログからの出力:
I20150515-13:34:16.005(0)? [velocity] mocha is starting a mirror at http://localhost:44995/.
I20150515-13:34:16.006(0)? [velocity] This takes a few minutes the first time.
I20150515-13:34:16.006(0)? [velocity] You can see the mirror logs at: tail -f /home/rof/src/bitbucket.org/atlasshrugs/garden/.meteor/local/log/mocha.log
PASSED mocha : Server initialization => should have a Meteor version defined
クライアント側のテストに到達するとすぐに、ハングアップしてビルドに失敗します。
助言がありますか?