Skip to content

Commit 65e40f4

Browse files
authored
Update README.md
1 parent 87c6b6f commit 65e40f4

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

README.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,27 @@ Its also possible to install the modules as usual using npm:
4242

4343
npm install
4444

45-
Yarn has the big advantage that if you use it you will be installing the exact same dependencies than I installed in my machine, so you wont run into issues caused by semantic versioning updates.
45+
NPM 5 or above has the big advantage that if you use it you will be installing the exact same dependencies than I installed in my machine, so you wont run into issues caused by semantic versioning updates.
4646

4747
This should take a couple of minutes. If there are issues, please post the complete error message in the Questions section of the course.
4848

49-
# To Run the Development Server
49+
# To Run the Development Backend Server
5050

51-
We can start the chat application with the following command:
51+
We can start the sample application backend with the following command:
5252

53-
npm start
53+
npm run server
5454

55-
The application is visible at port 4200 - [http://localhost:4200](http://localhost:4200)
55+
This is a small Node REST API server, and it uses HTTPS.
56+
57+
# To run the Development UI Server
58+
59+
To run the frontend part of our code, we will use the Angular CLI:
60+
61+
npm start
62+
63+
The application is visible at port 4200, but you need to use HTTPS - [https://localhost:4200](https://localhost:4200)
64+
65+
This application uses a self-signed certificate, so you will need to accept it using the browser. If you are using Chrome, you will need to click Advanced and then choose "Proceed to localhost".
5666

5767
# Installing branches other than master
5868

0 commit comments

Comments
 (0)