私はMEANで構築された優れた作業用ウェブサイトを持っていて、ローカルでうまく動作します。サーバーに展開したいのですが、ファイルを自分のWebサイトのFTPにアップロードする以外にWebサイトを展開したことはありません。
チュートリアルは誰ですか?
ここから始めます... https://github.com/linnovate/mean#hosting-mean どのオペレーティングシステムでホストする予定ですか?
もう1つの優れた出発点は、デジタルオーシャンです。チュートリアル付きのワンクリックインストールMEANスタックを提供しています。 https://www.digitalocean.com/community/tutorials/how-to-use-the-mean-one-click-install-image
MEAN Stack application
環境にHeroku cloud application
をデプロイしたところです。導入手順は簡単です。
展開する手順:
This is very important step. The bottonline is your package.json and server.js should be under your root directory. Have a look at the link to know more about the structure.
git clone https://github.com/heroku/node-js-getting-started.git
cd node-js-getting-started
git add .
を実行しますgit commit -m "Sample"
を実行しますHeroku login
を実行します(任意のキーを押してブラウザーを開き、[ログイン]をクリックするように求められます。ログイン後、ブラウザーインスタンスを閉じます。heroku create myApp --buildpack heroku/nodejs
を実行します。 Note: Buildpacks are responsible for transforming deployed code into a slug, which can then be executed on a dyno
。 詳細git Push heroku master
を実行します。あなたの服従が始まります。これでアプリケーションがデプロイされました。アプリの少なくとも1つのインスタンスが実行されていることを確認します:heroku ps:scale web=1
heroku open
を実行します。デプロイされたインスタンスを実行します。
heroku logs
を実行して、実行中のアプリに関する情報を表示します。 詳細
詳細については、次のリンクをご覧ください。
https://devcenter.heroku.com/articles/getting-started-with-nodejs#prepare-the-apphttps://devcenter.heroku.com/articles/deploying- nodejs