@@ -57,7 +57,7 @@ application. However, doing so usually takes a considerable amount of time and
5757## The Power of the Big Code Bang
5858
5959Although I have done some work using Microsoft's technologies, the majority of my career has been programming in Java.
60- I have done some with with NodeJS on the server as well. Any of these choices are fine for the server-side and all
60+ I have done some work with NodeJS on the server as well. Any of these choices are fine for the server-side and all
6161have their pros and cons. However with this initial rollout of the Big Code Bang project, Java will be used as the
6262server-side technology.
6363
@@ -160,9 +160,11 @@ _src/main/resources/view_project.properties_
160160| view_root_folder_name | The root folder of the project. | "wiley-view" |
161161| application_title | The value assigned to the title of the web application. | "Wiley Coyote Road Runner Widgets" |
162162| context_root | The context root for the web application. | "wiley" |
163- | localhost_port | The port used when running the application locally in the IDE. | "8081" |
164- | server_port | The port used when running the application on remote web server. | "80" |
165- | server_host_name | The host name used when running the app on a remote server. | "mydomain.com" |
163+ | localhost_port | The port used when running the REST services application on your local machine. | "8081" |
164+ | localhost_view_port | The port used when running the HTML application on your local NodeJS server. | "4200" |
165+ | server_port | The port used when running the REST services application on the remote java web server. | "80" |
166+ | server_view_port | The port used when running the HTML application on the remote HTTP server. | "80" |
167+ | server_host_name | The host name pointing to the remote server. | "mydomain.com" |
166168
167169## Executing The Big Code Bang
168170
@@ -405,6 +407,12 @@ npm install
405407npm update --save
406408```
407409
410+ * Install the CLI tool for Angular described at [ https://github.com/angular/angular-cli ] ( https://github.com/angular/angular-cli )
411+
412+ ```
413+ npm install -g @angular/cli
414+ ```
415+
408416* From the terminal, execute the production build to build the distribution.
409417
410418```
0 commit comments