Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
GustavoHenriqueRS authored May 13, 2024
0 parents commit 6f92192
Show file tree
Hide file tree
Showing 9 changed files with 69 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: ci
on:
push:
branches:
- master
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- uses: actions/cache@v2
with:
key: ${{ github.ref }}
path: .cache
- run: pip install mkdocs-material
- run: mkdocs gh-deploy --force
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# template-repository
repositório de template
3 changes: 3 additions & 0 deletions docs/atas-reuniao/ata-reuniao-1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
| Versão | Data | Descrição da Alteração | Nome(s) Integrante(s) |
| :----: | :--: | :--------------------: | :-------------------: |
| 1.0 | 25/02/2024 | Mudei isso e aquilo | Fulano de Tal |
3 changes: 3 additions & 0 deletions docs/documento-arquitetura/documento-arquitetura.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
| Versão | Data | Descrição da Alteração | Nome(s) Integrante(s) |
| :----: | :--: | :--------------------: | :-------------------: |
| 1.0 | 25/02/2024 | Mudei isso e aquilo | Fulano de Tal |
3 changes: 3 additions & 0 deletions docs/documento-plano-testes/documento-plano-testes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
| Versão | Data | Descrição da Alteração | Nome(s) Integrante(s) |
| :----: | :--: | :--------------------: | :-------------------: |
| 1.0 | 25/02/2024 | Mudei isso e aquilo | Fulano de Tal |
3 changes: 3 additions & 0 deletions docs/documento-requisitos/documento-requisitos.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
| Versão | Data | Descrição da Alteração | Nome(s) Integrante(s) |
| :----: | :--: | :--------------------: | :-------------------: |
| 1.0 | 25/02/2024 | Mudei isso e aquilo | Fulano de Tal |
3 changes: 3 additions & 0 deletions docs/documento-visao/documento-visao.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
| Versão | Data | Descrição da Alteração | Nome(s) Integrante(s) |
| :----: | :--: | :--------------------: | :-------------------: |
| 1.0 | 25/02/2024 | Mudei isso e aquilo | Fulano de Tal |
17 changes: 17 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Welcome to MkDocs

For full documentation visit [mkdocs.org](https://www.mkdocs.org).

## Commands

* `mkdocs new [dir-name]` - Create a new project.
* `mkdocs serve` - Start the live-reloading docs server.
* `mkdocs build` - Build the documentation site.
* `mkdocs -h` - Print help message and exit.

## Project layout

mkdocs.yml # The configuration file.
docs/
index.md # The documentation homepage.
... # Other markdown pages, images and other files.
13 changes: 13 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
site_name: Documentação

nav:
- Instruções mkdocs: "index.md"
- Documento de Visão: "documento-visao/documento-visao.md"
- Documento de Requisitos: "documento-requisitos/documento-requisitos.md"
- Documento de Arquitetura: "documento-arquitetura/documento-arquitetura.md"
- Documento de Plano de Testes: "documento-plano-testes/documento-plano-testes.md"
- Atas de Reunião:
- Ata 1: "atas-reuniao/ata-reuniao-1.md"

theme:
name: material

0 comments on commit 6f92192

Please sign in to comment.