Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A5.1 #19

Open
wants to merge 1 commit into
base: a4.3
Choose a base branch
from
Open

A5.1 #19

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions _explicacoes/a5.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
## A5.1: Documentando nosso projeto: Badges, Markdown e usabilidade de documentos

- Estilos de Documento:
- README.md
- [Exemplo](../docs/README.md)
- RFC: Request for Comments
- https://docs.google.com/document/d/1eUzLZekVbk_qynNDoG3CX6jN2vyNjw53pa5dncJ_ucs/edit#heading=h.irgarncgzpz0
- DR: Decision Record
- Título (2024/Q2 - ...)
- Contexto
- Decisão
- Motivação
- Alternativas Consideradas
- Consequências
- Data
- RACI (Responsável, Aprovador, Consultado, Informado)

- Formas de escrever:
- Markdown: https://docs.github.com/pt/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax

- Recursos Interessantes
- Badges
- https://shields.io/
- Diagramas
- ???
47 changes: 47 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# Projet Name

> Small description

## About this project 📚

Context...

## Setup & Run 🚀

### Pre-requisites

- [NodeJS](https://nodejs.org/en/), last version LTS

### Setup

Install dependencies with npm

```sh
npm ci
```

### Build

```sh
npm run build
```

> Extra considerations about the build?

## Running Tests ⚗️

Running all tests

```sh
npm run test # runs all tests
```

```sh
npm run test-changed # runs only changed tests
```

## Running Lint ✨

```sh
npm run lint
```
Loading