Angular 5 App。
これは、package.jsonにあるものです
{
"name": "web",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "node server.js",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"postinstall": "ng build --aot --prod"
},
"private": true,
"dependencies": {
"@angular/animations": "5.1.0",
"@angular/cli": "^1.6.4",
"@angular/common": "5.0.3",
"@angular/compiler": "5.0.3",
"@angular/compiler-cli": "5.0.3",
"@angular/core": "5.0.3",
"@angular/forms": "5.0.3",
"@angular/http": "5.0.3",
"@angular/platform-browser": "5.0.3",
"@angular/platform-browser-dynamic": "5.0.3",
"@angular/router": "5.0.3",
"@ng-bootstrap/ng-bootstrap": "1.0.0-beta.5",
"@ngx-translate/core": "8.0.0",
"@types/jquery": "3.2.16",
"angular2-image-upload": "^1.0.0-rc.0",
"bootstrap": "4.0.0-beta.2",
"core-js": "2.4.1",
"express": "^4.16.2",
"jquery": "3.2.1",
"jquery-slimscroll": "1.3.8",
"ngx-toastr": "8.0.0",
"ngx-uploader": "4.2.1",
"pace-js": "1.0.2",
"popper.js": "1.13.0",
"rxjs": "5.5.0",
"sticky-kit": "1.1.3",
"TypeScript": "~2.4.2",
"zone.js": "0.8.4"
},
"devDependencies": {
"@angular/language-service": "5.0.3",
"@types/jasmine": "~2.5.53",
"@types/jasminewd2": "~2.0.2",
"@types/node": "~6.0.60",
"codelyzer": "~3.2.0",
"jasmine-core": "~2.6.2",
"jasmine-spec-reporter": "~4.1.0",
"karma": "~1.7.0",
"karma-chrome-launcher": "~2.1.1",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "0.2.2",
"protractor": "~5.1.2",
"ts-node": "~3.2.0",
"tslint": "~5.7.0"
},
"engines": {
"node": "8.9.4",
"npm": "5.6.0"
}
}
これらのコンテンツを含むserver.jsを作成しました。
constexpress=require('express');
constapp=expres();
constpath=require('path');
app.us(express.static(__dirname+'/dist'));
app.listen(process.env.PORT||8080);
//PathLocationStradegy
app.get('/'function(req,res) {
res.sendFile(path.join(__dirname+'/dist/index.html'));
});
console.log('Console Listening');
次に、これらのコマンドを実行します
heroku auth:login
Email : [email protected]
Password : #########
heroku create iproject-demo
heroku git:remote iproject-demo
git status
git add -A
git Push heroku master
これを実行してみました
⚡️web heroku ps
Free dyno hours quota remaining this month: 998h 46m (99%)
For more information on dyno sleeping and how to upgrade, see:
https://devcenter.heroku.com/articles/dyno-sleeping
=== web (Free): npm start (1)
web.1: crashed 2018/01/27 14:18:58 -0500 (~ 1m ago)
すべてがよさそうだ。
Heroku LogはBuild Successを表示します。
-----> Node.js app detected
-----> Creating runtime environment
NPM_CONFIG_LOGLEVEL=error
NPM_CONFIG_PRODUCTION=true
NODE_VERBOSE=false
NODE_ENV=production
NODE_MODULES_CACHE=true
-----> Installing binaries
engines.node (package.json): unspecified
engines.npm (package.json): unspecified (use default)
Resolving node version 8.x...
Downloading and installing node 8.9.4...
Using default npm version: 5.6.0
-----> Restoring cache
Skipping cache restore (not-found)
-----> Building dependencies
Installing node modules (package.json)
added 26 packages in 5.46s
-----> Caching build
Clearing previous node cache
Saving 2 cacheDirectories (default):
- node_modules
- bower_components (nothing to cache)
-----> Build succeeded!
-----> Discovering process types
Procfile declares types -> (none)
Default types for buildpack -> web
-----> Compressing...
Done: 34.4M
-----> Launching...
Released v3
https://iproject-demo.herokuapp.com/ deployed to Heroku
しかし、私がアプリに行くとき:
https://iproject-demo.herokuapp.com/
私はこれを見る
これをさらにデバッグするにはどうすればよいですか?
Herokuにデプロイして作業するためにAngularアプリを作成する方法は次のとおりです。
server.js
は次のようになります。 https://hastebin.com/zavehahide.jspackage.json
、移動@angular/cli
および@angular/compiler-cli
からdevDependencies
からdependencies
へpackage.json
、追加postinstall: ng build --prod
およびstart: node server.js
からscripts
あなたは行ってもいいはずです。
通常、このエラーが発生した場合、ノードの依存関係に問題があります。 node_modulesフォルダーとdistフォルダーを削除してください。そこからすべてを再びスピンアップします。これは、herokuがプロジェクトを構築する方法を模倣します。
バックエンドをAPIとしてherokuにデプロイし、フロントエンドをgithubにデプロイし、ブラウジングコンピューターでOriginのクロスリソース共有を有効にする場合、実際にそのようなアプリを構築することをお勧めします。あなたがやっているこの方法の良いニュースは私を更新します
Herokuでprodをビルドする場合、メモリ超過の問題に直面します。したがって、フリータイプは機能しません。
したがって、ローカルでビルドし、Expressを使用してdistファイルを提供してください。
PROCファイルで同じコマンドを使用する
HerokuローカルまたはHerokuローカルWeb:ローカルでの変更を確認します
Package.jsonファイルに@angular-devkit/build-optimizer
をパッケージとして追加してみてください。
"dependencies": {
"@angular-devkit/build-optimizer": "^0.4.0",
...
}
これにより、インストール後フラグ--aot
を実行できます。何らかの理由で、このパッケージはもう組み込まれていません。
さらにデバッグする方法の答え。アプリを実行し、すぐにHerokuにログインしてアプリに移動し、[その他]ドロップダウンで[ログの表示]をクリックします。あなたを助けるべきです!
ターミナルを介してライブログを表示する方法もあるので、障害の原因を正確に確認できます。
あなたのserver.js
http呼び出しをインデックスにリダイレクトする必要があります。
app.route('/*', function(req,res) {
res.redirect(__dirname + '/dist/index.html')
})
上記では、index.htmlへの呼び出しをリダイレクトします。
Server.jsのコードを修正してください
const express = require('express');
const app = express();
const path = require('path');
app.use(express.static(__dirname+'/dist'));
app.listen(process.env.PORT||8080);
//Path Location Strategy
app.get('/', function(req, res) {
res.sendFile(path.join(__dirname+'/dist/index.html'));
});
console.log('Console Listening');
将来の参考のために -
uRLにアクセスする前にlogs
コマンドを実行してみてください。
$ heroku logs
その後、ログで詳細を確認してください。