Skip to content

Commit 9bf79bb

Browse files
committed
add readme
1 parent d479d28 commit 9bf79bb

File tree

1 file changed

+71
-4
lines changed

1 file changed

+71
-4
lines changed

README.md

Lines changed: 71 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,74 @@
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.
23

3-
This repository is a sample application for users following the getting started guide at https://docs.docker.com/get-started/.
4+
## Pré-requisitos
45

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+
```
674

7-
teste

0 commit comments

Comments
 (0)