Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6aa2036

Browse files
author
Anthony Gore
committed
Updating README
1 parent 669d7a3 commit 6aa2036

File tree

1 file changed

+26
-9
lines changed

1 file changed

+26
-9
lines changed

README.md

Lines changed: 26 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,32 +8,49 @@ Source code for the [Ultimate Vue.js Developers Course](http://bit.ly/2mPK8ny).
88

99
See the completed project here: [http://vuejs-cinema.vuejsdevelopers.com/](http://vuejs-cinema.vuejsdevelopers.com/)
1010

11-
#### Installation
11+
#### Pre-installation
12+
13+
- Ensure [NPM](https://docs.npmjs.com) and [git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) are installed on your system
1214

13-
1. Fork this repository
1415

15-
2. Clone the forked repository on your local file system
16+
#### Installation
1617

18+
1. Install this code on your local system
19+
20+
**Option 1 (recommended)**
21+
22+
1. Fork this repository (see top right corner)
23+
2. Clone the forked repository on your local file system
24+
25+
```
26+
cd /path/to/install/location
27+
git clone [email protected]:[your_username]/vuejs-cinema.git
28+
```
29+
30+
**Option 2 (easier)**
31+
32+
This option is better if you're not a Github user or are not sure how to setup SSH keys
33+
1734
```
1835
cd /path/to/install/location
19-
git clone git@github.com:[your_username]/vuejs-cinema.git
20-
```
21-
22-
3. Install dependencies
36+
git clone https://github.com/vuejsdevelopers/vuejs-cinema.git
37+
```
38+
39+
2. Install dependencies
2340
2441
```
2542
npm install
2643
```
2744
28-
4. Create a `.env` file by copying the sample
45+
3. Create a `.env` file by copying the sample
2946
3047
```
3148
cp .env_sample .env
3249
```
3350
3451
Edit the .env file and replace any variables if needed
3552
36-
5. Start project
53+
4. Start project
3754
3855
```
3956
npm run start

0 commit comments

Comments
 (0)