Angular App

Let's modify our angular application and upload it to Heroku using git.

We can now deploy our Angular application. There are a few updates we need to make to get our application to work with Heroku.

Below is our updated code. Use this to make further updates.

{
  "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  "version": 1,
  "newProjectRoot": "projects",
  "projects": {
    "lets-get-lunch": {
      "projectType": "application",
      "schematics": {},
      "root": "",
      "sourceRoot": "src",
      "prefix": "app",
      "architect": {
        "build": {
          "builder": "@angular-devkit/build-angular:browser",
          "options": {
            "outputPath": "dist/lets-get-lunch",
            "index": "src/index.html",
            "main": "src/main.ts",
            "polyfills": "src/polyfills.ts",
            "tsConfig": "tsconfig.app.json",
            "aot": true,
            "assets": [
              "src/favicon.ico",
              "src/assets"
            ],
            "styles": [
              "node_modules/bootstrap/dist/css/bootstrap.min.css",
              "node_modules/ng-pick-datetime/assets/style/picker.min.css",
              "node_modules/angular-calendar/css/angular-calendar.css",
              "src/styles.css"
            ],
            "scripts": [
              "node_modules/jquery/dist/jquery.min.js",
              "node_modules/bootstrap/dist/js/bootstrap.min.js"
            ]
          },
          "configurations": {
            "production": {
              "fileReplacements": [
                {
                  "replace": "src/environments/environment.ts",
                  "with": "src/environments/environment.prod.ts"
                }
              ],
              "optimization": true,
              "outputHashing": "all",
              "sourceMap": false,
              "extractCss": true,
              "namedChunks": false,
              "extractLicenses": true,
              "vendorChunk": false,
              "buildOptimizer": true,
              "budgets": [
                {
                  "type": "initial",
                  "maximumWarning": "2mb",
                  "maximumError": "5mb"
                },
                {
                  "type": "anyComponentStyle",
                  "maximumWarning": "6kb",
                  "maximumError": "10kb"
                }
              ]
            }
          }
        },
        "serve": {
          "builder": "@angular-devkit/build-angular:dev-server",
          "options": {
            "browserTarget": "lets-get-lunch:build"
          },
          "configurations": {
            "production": {
              "browserTarget": "lets-get-lunch:build:production"
            }
          }
        },
        "extract-i18n": {
          "builder": "@angular-devkit/build-angular:extract-i18n",
          "options": {
            "browserTarget": "lets-get-lunch:build"
          }
        },
        "test": {
          "builder": "@angular-devkit/build-angular:karma",
          "options": {
            "main": "src/test.ts",
            "polyfills": "src/polyfills.ts",
            "tsConfig": "tsconfig.spec.json",
            "karmaConfig": "karma.conf.js",
            "assets": [
              "src/favicon.ico",
              "src/assets"
            ],
            "styles": [
              "node_modules/bootstrap/dist/css/bootstrap.min.css",
              "src/styles.css"
            ],
            "scripts": [
              "node_modules/jquery/dist/jquery.min.js",
"node_modules/bootstrap/dist/js/bootstrap.min.js"
            ]
          }
        },
        "lint": {
          "builder": "@angular-devkit/build-angular:tslint",
          "options": {
            "tsConfig": [
              "tsconfig.app.json",
              "tsconfig.spec.json",
              "e2e/tsconfig.json"
            ],
            "exclude": [
              "**/node_modules/**"
            ]
          }
        },
        "e2e": {
          "builder": "@angular-devkit/build-angular:protractor",
          "options": {
            "protractorConfig": "e2e/protractor.conf.js",
            "devServerTarget": "lets-get-lunch:serve"
          },
          "configurations": {
            "production": {
              "devServerTarget": "lets-get-lunch:serve:production"
            }
          }
        }
      }
    }
  },
  "defaultProject": "lets-get-lunch"
}
Angular app

Update environment variables

Update /src/environments/environment.prod.ts by adding the api value for our new Heroku endpoint.

Press + to interact
// src/environments/environment.prod.ts
export const environment = {
production: true,
googleMaps: 'googlemapskey',
api: 'https://ed-lets-get-lunch-api.herokuapp.com/'
};

Now that the these two files are set up within /src/environments, our Angular application can use the appropriate API path when it’s running locally or in production on Heroku.

Node.js server

Create a simple Node.js app for Heroku to serve our Angular application. We need the Node.js framework, Express, for this purpose.

Note: Below is the command to install the Node.js framework.

npm install express --save

YYou don’t need to run this command, because it’s already installed here.

Create a new file in the root directory of the ...