Skip to content

Commit d64b4ac

Browse files
committed
some progress
1 parent 6e3f310 commit d64b4ac

File tree

41 files changed

+30263
-269
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+30263
-269
lines changed

README.md

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
# React Exercises at 4Geeks Academy (beta)
1+
<p align="center">
2+
<img src="https://assets.breatheco.de/apis/img/images.php?blob&random&cat=icon&tags=4geeks,128">
3+
</p>
24

3-
Make sure you have the [breathecode-cli](https://github.com/breatheco-de/breathecode-cli) installed and node.js version 8
5+
<p>
6+
<h2 align="center"> React Exercises at 4Geeks Academy (beta) </h2>
7+
</p>
8+
9+
Make sure you have the [breathecode-cli](https://github.com/breatheco-de/breathecode-cli) installed and `node.js` version 8
410

511
To download the react exercises run:
612
```
@@ -15,16 +21,13 @@ Each exercise is a small react application containing the following files:
1521
2. **README.md:** contains exercise instructions.
1622
3. **test.js:** you don't have to open this file, it contains the testing script for the exercise.
1723

18-
### Reading the instructions
19-
We have created a small application to read the instructions in a better format, to run it type the following on your command line:
20-
```sh
21-
$ bc run:instructions
22-
```
23-
### Completing the exercises
24-
One you finish reading the instructions, start a development server for the particular exercise you want to preview:
24+
## Start making the exercises
25+
26+
To start the coding editor and read the instructions run the following command:
27+
2528
```sh
26-
$ bc run:exercise -n=<exercise number>
29+
$ bc run:exercises
2730
```
28-
Note: you have to replace ```<exercise number>``` with the real exercise number you want to run.
29-
30-
Once the development server is running you can start coding your solution on any of the files inside the exercise folder number.
31+
<p align="center">
32+
<img src="https://assets.breatheco.de/apis/img/images.php?blob&random&cat=icon&tags=4geeks,128">
33+
</p>

_app/bundle.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_app/bundle.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/favicon.png

6.27 KB
Loading

dist/index.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!--
2+
This template file is being used by webpack to generate the index.html dynamically
3+
-->
4+
<!DOCTYPE html>
5+
<html>
6+
<head>
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<meta charset="UTF-8">
9+
<title>BreatheCode</title>
10+
<!-- Here we include Font Awesome -->
11+
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
12+
<link rel="shortcut icon" href="/preview/favicon.png"></head>
13+
<body>
14+
<div id="myDiv"></div>
15+
<!-- here is were the script tag for the bundle will be generated -->
16+
<script type="text/javascript" src="/preview/main.js"></script></body>
17+
</html>

0 commit comments

Comments
 (0)