|
1 | | -# Getting started |
| 1 | +## Containeriza uma app |
| 2 | +Ao longo desta aula, você trabalhará com um gerenciador simples de lista de tarefas que roda em Node.js. Se você não estiver familiarizado com Node.js, não se preocupe. Este guia não exige nenhuma experiência prévia com JavaScript. |
2 | 3 |
|
3 | | -This repository is a sample application for users following the getting started guide at https://docs.docker.com/get-started/. |
| 4 | +## Pré-requisitos |
4 | 5 |
|
5 | | -The application is based on the application from the getting started tutorial at https://github.com/docker/getting-started |
| 6 | +- Você instalou a versão mais recente do Docker. |
| 7 | +- Você instalou um cliente Git. |
| 8 | +- Você possui um IDE ou um editor de texto para editar arquivos. |
| 9 | + |
| 10 | +## App (Lista de Tarefas) |
| 11 | + |
| 12 | +```bash |
| 13 | +git clone https://github.com/docker/getting-started-app.git |
| 14 | +``` |
| 15 | + |
| 16 | +1. Alguns recursos que temos dentro dessa app abaixo: |
| 17 | + |
| 18 | +```bash |
| 19 | +$ tree getting-started-app/ |
| 20 | +getting-started-app/ |
| 21 | +├── README.md |
| 22 | +├── package.json |
| 23 | +├── spec |
| 24 | +│ ├── persistence |
| 25 | +│ │ └── sqlite.spec.js |
| 26 | +│ └── routes |
| 27 | +│ ├── addItem.spec.js |
| 28 | +│ ├── deleteItem.spec.js |
| 29 | +│ ├── getItems.spec.js |
| 30 | +│ └── updateItem.spec.js |
| 31 | +├── src |
| 32 | +│ ├── index.js |
| 33 | +│ ├── persistence |
| 34 | +│ │ ├── index.js |
| 35 | +│ │ ├── mysql.js |
| 36 | +│ │ └── sqlite.js |
| 37 | +│ ├── routes |
| 38 | +│ │ ├── addItem.js |
| 39 | +│ │ ├── deleteItem.js |
| 40 | +│ │ ├── getItems.js |
| 41 | +│ │ └── updateItem.js |
| 42 | +│ └── static |
| 43 | +│ ├── css |
| 44 | +│ │ ├── bootstrap.min.css |
| 45 | +│ │ ├── font-awesome |
| 46 | +│ │ │ ├── all.min.css |
| 47 | +│ │ │ ├── fa-brands-400.eot |
| 48 | +│ │ │ ├── fa-brands-400.svg#fontawesome |
| 49 | +│ │ │ ├── fa-brands-400.ttf |
| 50 | +│ │ │ ├── fa-brands-400.woff |
| 51 | +│ │ │ ├── fa-brands-400.woff2 |
| 52 | +│ │ │ ├── fa-regular-400.eot |
| 53 | +│ │ │ ├── fa-regular-400.svg#fontawesome |
| 54 | +│ │ │ ├── fa-regular-400.ttf |
| 55 | +│ │ │ ├── fa-regular-400.woff |
| 56 | +│ │ │ ├── fa-regular-400.woff2 |
| 57 | +│ │ │ ├── fa-solid-900.eot |
| 58 | +│ │ │ ├── fa-solid-900.svg#fontawesome |
| 59 | +│ │ │ ├── fa-solid-900.ttf |
| 60 | +│ │ │ ├── fa-solid-900.woff |
| 61 | +│ │ │ └── fa-solid-900.woff2 |
| 62 | +│ │ └── styles.css |
| 63 | +│ ├── index.html |
| 64 | +│ └── js |
| 65 | +│ ├── app.js |
| 66 | +│ ├── babel.min.js |
| 67 | +│ ├── react-bootstrap.js |
| 68 | +│ ├── react-dom.production.min.js |
| 69 | +│ └── react.production.min.js |
| 70 | +└── yarn.lock |
| 71 | + |
| 72 | +11 directories, 40 files |
| 73 | +``` |
6 | 74 |
|
7 | | -teste |
|
0 commit comments