@@ -10,7 +10,14 @@ If you are running Windows, we recommend you install and use [Windows Subsystem
10
10
11
11
### How to launch the app locally?
12
12
1 . If you haven't already, ensure that your development environment is set up properly. Refer to the section above for tips.
13
- 2 . Clone the repository to your local environment.
13
+
14
+ 2 . Fork this repository to your Github account.
15
+ 1 . Click fork on the original repository as image below shows:
16
+ ![ picture showing how to fork the repository] ( https://i.imgur.com/V4rn6kX.png )
17
+ 2 . Give a suitable name (generally the original name itself) and click Create Fork.
18
+ 3 . Go to the forked repository in your account.
19
+
20
+ 3 . Clone the repository to your local environment.
14
21
1 . In Terminal, go to the folder where you would like to clone the repository to.
15
22
2 . Get a link to the repository as image below shows:
16
23
![ alt text] ( https://i.imgur.com/ZPYKL1y.png )
@@ -19,20 +26,20 @@ If you are running Windows, we recommend you install and use [Windows Subsystem
19
26
git clone {link_to_repository}
20
27
```
21
28
22
- 3 . Go into the repository. In Unix environment you can use ` cd ` command for this.
23
- 4 . Install dependencies frontend app needs to run. Run:
29
+ 4 . Go into the repository. In Unix environment you can use ` cd ` command for this.
30
+ 5 . Install dependencies frontend app needs to run. Run:
24
31
``` bash
25
32
npm install
26
33
```
27
34
28
35
Note that you might need sudo permissions for that.
29
36
30
- 3 . Start backend. Run:
37
+ 6 . Start backend. Run:
31
38
``` bash
32
39
npm run start-json-server
33
40
```
34
41
35
- 4 . Start frontend. Run:
42
+ 7 . Start frontend. Run:
36
43
``` bash
37
44
npm run start
38
45
```
0 commit comments