Skip to content

Commit 32f343a

Browse files
✨ Release version with the module one
Create the environment for project's base development
1 parent 2d22352 commit 32f343a

18 files changed

Lines changed: 897 additions & 0 deletions

.github/workflows/build.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Build EPub
2+
3+
on: push
4+
5+
jobs:
6+
convert_via_pandoc:
7+
runs-on: ubuntu-18.04
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: docker://pandoc/core:2.9
11+
with:
12+
args: >- # allows you to break string into multiple lines
13+
--standalone
14+
--output=react.epub
15+
--metadata title="Curso de React"
16+
--metadata pagetitle="Curso de React"
17+
--metadata author="Marco Bruno"
18+
--metadata author="Raphael Freitas Pereira"
19+
--metadata lang="pt-BR"
20+
--epub-cover-image img/cover.jpg
21+
--epub-metadata meta.yaml
22+
modulo-01/README.md
23+
modulo-01/modulo-01-exercicio-01.md
24+
modulo-01/modulo-01-exercicio-02.md
25+
modulo-01/modulo-01-exercicio-03.md
26+
modulo-01/modulo-01-exercicio-04.md
27+
modulo-01/modulo-01-exercicio-05.md
28+
modulo-01/modulo-01-exercicio-06.md
29+
modulo-01/modulo-01-exercicio-07.md
30+
modulo-01/modulo-01-extra-01.md

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
# Rect Feliz
2+
3+
## Módulo 01 - Base para React Feliz

img/cover.jpg

201 KB
Loading

img/eslint.png

139 KB
Loading

img/ico-config-json-vscode.png

505 Bytes
Loading

img/ico-extensions-vscode.png

564 Bytes
Loading

img/ico-settings.png

764 Bytes
Loading

img/prettier.png

127 KB
Loading

meta.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
title:
2+
- type: main
3+
text: Curso de React
4+
creator:
5+
- role: author
6+
text: Marco Bruno
7+
- role: editor
8+
text: Raphael Freitas Pereira
9+
author:
10+
- name: Marco Bruno
11+
affiliation: CollabCode Tech
12+
- name: Raphael Freitas Pereira
13+
affiliation: CollabCode Tech
14+
date: 2022-03-03
15+
lang: pt-BR
16+
ibooks:
17+
version: 1.0.0
18+
cover-image: img/cover.jpg

modulo-01/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Módulo 01 - Base para React Feliz

0 commit comments

Comments
 (0)