-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 65b04ac
Showing
15 changed files
with
101 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM pandoc/latex:latest | ||
|
||
RUN apk add --update --no-cache \ | ||
graphviz \ | ||
ttf-freefont |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
version: "3" | ||
|
||
services: | ||
app: | ||
entrypoint: sh .docker/pdf.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
version: "3" | ||
|
||
services: | ||
app: | ||
build: | ||
dockerfile: .docker/Dockerfile | ||
context: ../ | ||
working_dir: /book | ||
volumes: | ||
- ./..:/book | ||
ports: | ||
- 3000:3000 | ||
tty: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/sh | ||
|
||
dot -Tsvg -O content/*/*.gv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/sh | ||
|
||
sh .docker/graphviz.sh | ||
|
||
pandoc -s -N --variable "geometry=margin=1in" \ | ||
--metadata-file=content/meta.yml \ | ||
content/1_introducao/README.md \ | ||
content/2_algoritmos/README.md \ | ||
content/3_git/README.md \ | ||
content/4_react/README.md \ | ||
content/5_lumen/README.md \ | ||
--toc -o intro-dev-web.pdf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
intro-dev-web.pdf | ||
*.svg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
up: | ||
@docker-compose -p intro-dev-web -f .docker/docker-compose.yml up -d | ||
|
||
up-build: | ||
@docker-compose -p intro-dev-web -f .docker/docker-compose.yml up -d --build | ||
|
||
sh: | ||
@docker-compose -p intro-dev-web -f .docker/docker-compose.yml exec app sh | ||
|
||
down: | ||
@docker-compose -p intro-dev-web -f .docker/docker-compose.yml down | ||
|
||
pdf: | ||
@docker-compose -p intro-dev-web -f .docker/docker-compose.yml -f .docker/docker-compose-pdf.yml up |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Introdução ao desenvolvimento web | ||
|
||
[Livro]() disponível para iniciar pessoas interessadas na área de desenvolvimento web. | ||
|
||
## Build local | ||
|
||
```sh | ||
make pdf | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Introdução | ||
|
||
## Objetivo e escopo | ||
|
||
## Dicas iniciais | ||
|
||
## Onde estamos | ||
|
||
## O que é a web |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Algoritmos com Javascript |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Git e Github | ||
|
||
![Fluxo de trabalho comum](content/3_git/workflow.gv.svg ){ width=50% }\ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
digraph D { | ||
dev[label="cria/modifica/deleta arquivos"]; | ||
|
||
node [shape=rect,fontname=mono]; | ||
init[label="git init"]; | ||
clone[label="git clone <url>"]; | ||
add[label="git add"]; | ||
commit[label="git commit -m \"<Mensagem de commit>\""]; | ||
push[label="git push origin HEAD"]; | ||
|
||
init -> dev; | ||
clone -> dev; | ||
|
||
dev -> add -> commit; | ||
|
||
commit -> push; | ||
commit -> dev; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Introdução ao desenvolvimento web com React |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Introdução ao desenvolvimento web com Lumen |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
title: Introdução ao desenvolvimento web | ||
subtitle: Conteúdo introdutório essencial para entrar na área de desenvolvimento web | ||
author: | ||
- Felipe Silva |