-
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.
Merge pull request #5 from mdsreq-fga-unb/changedocs
(docs): recriando a página de documentação
- Loading branch information
Showing
19 changed files
with
110 additions
and
82 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,29 @@ | ||
name: ci | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
permissions: | ||
contents: write | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Configure Git Credentials | ||
run: | | ||
git config user.name github-actions[bot] | ||
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV | ||
- uses: actions/cache@v4 | ||
with: | ||
key: mkdocs-material-${{ env.cache_id }} | ||
path: .cache | ||
restore-keys: | | ||
mkdocs-material- | ||
- run: pip install mkdocs-material | ||
- run: mkdocs gh-deploy --force |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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 @@ | ||
# Fundamentos de Engenharia de Software |
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.
File renamed without changes.
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,80 @@ | ||
site_name: Nimbus | ||
repo_url: https://github.com/mdsreq-fga-unb/2024.1-Nimbus | ||
repo_name: 2024.1-Nimbus | ||
|
||
nav: | ||
- Home: index.md | ||
- História: faccao/faccao.md | ||
- Visão Geral do Produto: visao-geral-prod.md | ||
- Missão 1: | ||
- Fundamentos de ESW: missao-1/fundamentos.md | ||
- Missão 2: missao2.md | ||
- Missão 3: missao3.md | ||
- Missão 4: missao4.md | ||
- Backlog do Produto: missao2.md | ||
- Sprints: | ||
- Sprint 0: sprints/sprint-0.md | ||
- Sprint 1: sprints/sprint-1.md | ||
theme: | ||
name: material | ||
icon: | ||
repo: fontawesome/brands/github | ||
|
||
features: | ||
- navigation.tabs | ||
- navigation.tabs.sticky | ||
- navigation.path | ||
- navigation.prune | ||
- navigations.indexes | ||
- content.code.copy | ||
- toc.integrate | ||
- search.suggest | ||
- search.highlight | ||
|
||
nav_style: dark | ||
language: pt | ||
repo: fontawesome/brands/github | ||
logo: img/brasao2.png | ||
favicon: img/brasao.ico | ||
|
||
palette: | ||
- scheme: light blue | ||
toggle: | ||
icon: material/toggle-switch-off-outline | ||
name: Alternar para modo escuro | ||
primary: grey | ||
accent: light blue | ||
|
||
- scheme: slate | ||
toggle: | ||
icon: material/toggle-switch | ||
name: Alternar para modo claro | ||
primary: black | ||
accent: light blue | ||
|
||
markdown_extensions: | ||
- pymdownx.arithmatex: | ||
generic: true | ||
- pymdownx.emoji: | ||
emoji_index: !!python/name:material.extensions.emoji.twemoji | ||
emoji_generator: !!python/name:material.extensions.emoji.to_svg | ||
- pymdownx.highlight: | ||
anchor_linenums: true | ||
line_spans: __span | ||
pygments_lang_class: true | ||
- pymdownx.keys | ||
- pymdownx.smartsymbols | ||
- pymdownx.caret | ||
- pymdownx.mark | ||
- pymdownx.tilde | ||
- pymdownx.betterem | ||
- pymdownx.inlinehilite | ||
- admonition | ||
- footnotes | ||
- pymdownx.details | ||
- pymdownx.superfences | ||
- attr_list | ||
- pymdownx.snippets | ||
|
||
extra_css: | ||
- stylesheets/extra.css |