-
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.
Versao inicial do documento de introducao e personalizacao do pages
Co-authored-by: Eduardo Sandes <[email protected]>
- Loading branch information
1 parent
40475cc
commit 7a0e845
Showing
5 changed files
with
74 additions
and
13 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,17 +1,32 @@ | ||
# Welcome to MkDocs | ||
# Sistema de Controle e EStatística de Produtos em Estoque (SCESPE) | ||
|
||
For full documentation visit [mkdocs.org](https://www.mkdocs.org). | ||
![Logo](assets/logoSCESPE.jpeg) | ||
|
||
## Commands | ||
## Introdução | ||
Esse repositório foi criado para o desenvolvimento do projeto SCESPE da disciplina de Requisitos de Software da Universidade de Brasília, durante o 1º semestre de 2024. A disciplina tem o objetivo de ensinar sobre os fundamentos da engenharia de requisitos, sendo uma área interdisciplinar da Engenharia de Software. O nosso projeto compreende uma aplicação web que visa gerir e analisar de forma automatizada um estoque de produtos. | ||
|
||
* `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. | ||
## Equipe | ||
A equipe SCESPE é formada pelos estudantes de Engenharia de Software da Universidade de Brasília apresentados a seguir. | ||
|
||
## Project layout | ||
<center> | ||
|
||
mkdocs.yml # The configuration file. | ||
docs/ | ||
index.md # The documentation homepage. | ||
... # Other markdown pages, images and other files. | ||
| Foto | Nome | Github | | ||
| :---------: | :----------------------------------: | :----: | | ||
| ![Foto Andre Emanuel(Membro Time)](https://avatars.githubusercontent.com/u/109833229?v=4){ align=center, width="100" } | André Silva | [:fontawesome-brands-github: Hunter104](https://github.com/Hunter104) | | ||
| ![Foto Bruno Menezes(Membro Time)](https://avatars.githubusercontent.com/u/110112943?v=4){ align=center, width="100" } | Bruno Menezes | [:fontawesome-brands-github: EhOBruno](https://github.com/EhOBruno) | | ||
| ![Foto Carlos Alves(Membro Time)](https://avatars.githubusercontent.com/u/110146000?v=4){ align=center, width="100" } | Carlos Alves | [:fontawesome-brands-github: CADU110](https://github.com/CADU110) | | ||
| ![Foto Eduardo Sandes(Membro Time)](https://avatars.githubusercontent.com/u/117608648?v=4){ align=center, width="100" } | Eduardo Sandes | [:fontawesome-brands-github: DiceRunner714](https://github.com/DiceRunner714) | | ||
| ![Foto Henrique Quenino(Membro Time)](https://avatars.githubusercontent.com/u/110349110?v=4){ align=center, width="100" } | Henrique Quenino | [:fontawesome-brands-github: henriquecq](https://github.com/henriquecq) | | ||
| ![Foto Larissa Vieira(Membro Time)](https://avatars.githubusercontent.com/u/116472322?v=4){ align=center, width="100" } | Larissa Vieira | [:fontawesome-brands-github: VieiraLaris](https://github.com/VieiraLaris) | | ||
| ![Foto Vinícius de Oliveira(Membro Time)](https://avatars.githubusercontent.com/u/88348878?v=4){ align=center, width="100" } | Vinícius Santos | [:fontawesome-brands-github: ViniciussdeOliveira](https://github.com/ViniciussdeOliveira) | | ||
|
||
</center> | ||
|
||
<div style="text-align: center"> | ||
<p> Tabela 1: Equipe de trabalho (Fonte: autor, 2024).</p> | ||
</div> | ||
|
||
## Histórico de versão | ||
| Versão | Data | Descrição | Autor(es) | Revisor(es) | | ||
| :----: | :--: | :-------: | :-------: | :---------: | | ||
| `1.0` | 16/04/2024 | Versão inicial do documento de introdução | Vinícius Santos | Eduardo Sandes | |
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 |
---|---|---|
@@ -1 +1,47 @@ | ||
site_name: My Docs | ||
site_name: SCESPE | ||
|
||
repo_name: "2024.1-SCESPE-" | ||
repo_url: "https://github.com/mdsreq-fga-unb/2024.1-SCESPE-" | ||
|
||
theme: | ||
name: material | ||
logo: assets/icon_SCESPE.png | ||
favicon: assets/icon_SCESPE.png | ||
features: | ||
- navigation.tabs | ||
- navigation.sections | ||
- toc.integrate | ||
- navigation.top | ||
- search.suggest | ||
- search.highlight | ||
- content.tabs.link | ||
- content.code.annotation | ||
- content.code.copy | ||
language: pt-BR | ||
palette: | ||
- scheme: default | ||
toggle: | ||
icon: material/toggle-switch-off-outline | ||
name: Switch to dark mode | ||
primary: teal | ||
accent: purple | ||
- scheme: slate | ||
toggle: | ||
icon: material/toggle-switch | ||
name: Switch to light mode | ||
primary: teal | ||
accent: lime | ||
|
||
nav: | ||
- Sobre: index.md | ||
|
||
markdown_extensions: | ||
- tables | ||
- attr_list | ||
- md_in_html | ||
- def_list | ||
- pymdownx.tasklist: | ||
custom_checkbox: true | ||
- pymdownx.emoji: | ||
emoji_index: !!python/name:materialx.emoji.twemoji | ||
emoji_generator: !!python/name:materialx.emoji.to_svg |