You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+32-7Lines changed: 32 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,24 +12,49 @@ This project was generated using [Angular CLI](https://github.com/angular/angula
12
12
13
13
## Prerequisites
14
14
15
+
In general, you will need to have installed in your machine the following:
16
+
- Git
17
+
- Visual Studio code(most common) or your favourite editor
18
+
15
19
### Node.js
16
20
17
-
Install Node.js from [https://nodejs.org/en/download/] but we recommend that you install it using Node Version Management [https://github.com/nvm-sh/nvm] (v12.16.1 LTS).
21
+
We strongly recommend that you install it using Node Version Management [https://github.com/nvm-sh/nvm] (v12.16.1 LTS) due to some project will only work with a specific version and by using Node Version Management you can switch between versions.
18
22
19
23
### Angular CLI
20
24
21
25
Angular CLI is a Command Line Interface (CLI) to speed up your development with Angular.
22
26
23
27
Run `npm install -g @angular/cli` to install Angular CLI
24
28
29
+
### Docker
30
+
31
+
You can download it from here: https://www.docker.com/get-started/ you will find the perfect Docker version for you.
32
+
33
+
### Chocolatey
34
+
35
+
By installing this, you'll be able to use the commands to run your proyect.
36
+
You can do it by following the steps here https://chocolatey.org/install. Although the page tells you to use Powershell, you should be able to use any command line with admin permissions. Don't forget to select the "Individual button" before following the installation steps.
You will need to install Make for you to be easier setting your environment.
43
+
In your command line with admin permissions run `choco install make`
44
+
25
45
## Install Node Modules
26
46
27
-
Run `npm install`to install the required node_modules for this project.
47
+
In project path, open your favourite command line and run `npm install`in order to be able to run the project locally.
28
48
29
49
## Development server
30
50
31
-
Run `ng serve` to run the app in dev mode. After executing this command, you can navigate to `http://localhost:4200/` to see the app working.
32
-
The app will automatically reload if you change anything in the source files.
51
+
Yo have 2 ways to run this project in dev mode:
52
+
**First**:
53
+
- In your project path, open your favourite command line and run the follwing commands: `make build` then `make run` and finally `make log`. When the project is successfully compiled you can go to `http://localhost:4200/` in your browser. Remember you must have your Docker running.
54
+
**Second**:
55
+
- Run `ng serve` to run the app in dev mode. After executing this command, you can navigate to `http://localhost:4200/` to see the app working. This method is usefull when you want to run a specific branch using less time but not recommended when doing QA.
56
+
57
+
In any case, the app will automatically reload if you change anything in the source files.
0 commit comments