File tree Expand file tree Collapse file tree 1 file changed +26
-9
lines changed Expand file tree Collapse file tree 1 file changed +26
-9
lines changed Original file line number Diff line number Diff line change @@ -8,32 +8,49 @@ Source code for the [Ultimate Vue.js Developers Course](http://bit.ly/2mPK8ny).
8
8
9
9
See the completed project here: [ http://vuejs-cinema.vuejsdevelopers.com/ ] ( http://vuejs-cinema.vuejsdevelopers.com/ )
10
10
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
12
14
13
- 1 . Fork this repository
14
15
15
- 2 . Clone the forked repository on your local file system
16
+ #### Installation
16
17
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
+
17
34
```
18
35
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
23
40
24
41
```
25
42
npm install
26
43
```
27
44
28
- 4 . Create a `.env` file by copying the sample
45
+ 3 . Create a `.env` file by copying the sample
29
46
30
47
```
31
48
cp .env_sample .env
32
49
```
33
50
34
51
Edit the .env file and replace any variables if needed
35
52
36
- 5 . Start project
53
+ 4 . Start project
37
54
38
55
```
39
56
npm run start
You can’t perform that action at this time.
0 commit comments