|
1 | 1 | # Gif Expert App |
2 | 2 |
|
| 3 | +- [Developers Giphy][giphy] |
| 4 | +- [Animate CSS][animate_css] |
3 | 5 | - [Estructura de archivos][structure] |
4 | 6 | - [Structuring projects and naming components in React][structuring-projects-and-naming-components] |
5 | 7 |
|
6 | 8 | [structure]: https://es.reactjs.org/docs/faq-structure.html |
7 | 9 | [structuring-projects-and-naming-components]: https://hackernoon.com/structuring-projects-and-naming-components-in-react-1261b6e18d76 |
| 10 | +[giphy]: https://developers.giphy.com/ |
| 11 | +[animate_css]: https://animate.style/ |
8 | 12 |
|
9 | 13 | ### Install |
10 | 14 |
|
|
21 | 25 | βββ package.json |
22 | 26 | βββ src |
23 | 27 | βΒ Β βββ GifExpertApp.js |
| 28 | +βΒ Β βββ components |
| 29 | +βΒ Β βΒ Β βββ AddCategory.js |
| 30 | +βΒ Β βΒ Β βββ GifGrid.js |
| 31 | +βΒ Β βΒ Β βββ GifGridItem.js |
| 32 | +βΒ Β βΒ Β βββ ListCategories.js |
| 33 | +βΒ Β βΒ Β βββ index.js |
| 34 | +βΒ Β βββ helpers |
| 35 | +βΒ Β βΒ Β βββ getGifs.js |
| 36 | +βΒ Β βΒ Β βββ index.js |
| 37 | +βΒ Β βββ hooks |
| 38 | +βΒ Β βΒ Β βββ useFetchGifs.js |
24 | 39 | βΒ Β βββ index.css |
25 | 40 | βΒ Β βββ index.js |
26 | 41 | βΒ Β βββ setupTests.js |
27 | 42 | βββ yarn.lock |
28 | 43 |
|
29 | | -1 directory, 9 files |
| 44 | +4 directories, 17 files |
30 | 45 | ``` |
31 | 46 |
|
32 | 47 | ### Scripts |
|
39 | 54 |
|
40 | 55 | > run `docker-compose run app yarn test` |
41 | 56 |
|
| 57 | +#### Build |
| 58 | + |
| 59 | +> run `docker-compose run app yarn build`, install `yarn global http-server` to test. |
| 60 | +> run `http-server build` |
| 61 | +
|
0 commit comments