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
You can open these exercises in just a few seconds by clicking: [Open in Codespaces](https://codespaces.new/?repo=4GeeksAcademy/bootstrap-exercises-tutorial) (recommended) or [Open in Gitpod](https://gitpod.io#https://github.com/4GeeksAcademy/bootstrap-exercises-tutorial.git).
41
37
42
-
> Once you have VSCode open the LearnPack exercises should start automatically. If exercises don't run automatically you can try typing on your terminal: `$ learnpack start`
38
+
> Once you have VSCode open, the LearnPack exercises should start automatically. If exercises don't run automatically you can try typing on your terminal: `$ learnpack start`
43
39
44
40
## Local installation:
45
41
46
-
1. Install learnpack, the package manager for learning tutorials and the html compiler plugin for learnpack, make sure you also have node.js 12+:
42
+
1. Install LearnPack, the package manager for learning tutorials and the node compiler plugin for LearPack, make sure you also have node.js 14+:
47
43
48
-
```
44
+
```bash
49
45
$ npm i learnpack -g
50
46
$ learnpack plugins:install learnpack-html
51
47
```
52
48
53
-
2. Download this particular exercises using learnpack and `cd` into the folder:
49
+
2. Download these particular exercises using LearnPack and `cd` into the folder:
54
50
55
-
```
51
+
```bash
56
52
$ learnpack download bootstrap-exercises-tutorial
57
53
$ cd bootstrap-exercises-tutorial
58
54
```
59
55
60
-
> Note: Once you finish downloading, you will find a "exercises" folder that contains all the exercises within.
56
+
> Note: Once you finish downloading, you will find an "exercises" folder that contains all the exercises within.
61
57
62
-
3. Start the tutorial/exercises by running the following command at the same level were your bc.json file is:
58
+
3. Start the tutorial/exercises by running the following command at the same level where your learn.json file is:
63
59
64
-
```sh
60
+
```bash
65
61
$ npm i jest@24.8.0 -g
66
62
$ learnpack start
67
63
```
@@ -71,13 +67,13 @@ $ learnpack start
71
67
72
68
## How are the exercises organized?
73
69
74
-
Each exercise is a small react application containing the following files:
70
+
Each exercise is a small React application containing the following files:
75
71
76
-
1.**index.js:** represents the entry file for the entire exercise.
72
+
1.**index.html:** represents the entry file for the entire exercise.
77
73
2.**README.md:** contains exercise instructions.
78
74
3.**test.js:** you don't have to open this file, it contains the testing script for the exercise.
79
75
80
-
> Note: The exercises have automatic grading but its very rigid and string, my recomendation is to ignore the tests and use them only as a recomendation or you can get frustrated.
76
+
> Note: The exercises have automatic grading, but it's very rigid and strict, my recommendation is to not take the tests too serious and use them only as a suggestion, or you may get frustrated.
0 commit comments