Skip to content

Commit

Permalink
Merge pull request #5 from mdsreq-fga-unb/changedocs
Browse files Browse the repository at this point in the history
(docs): recriando a página de documentação
  • Loading branch information
artrsousa1 authored Apr 17, 2024
2 parents 4a3fdfa + a602254 commit 911c1c9
Show file tree
Hide file tree
Showing 19 changed files with 110 additions and 82 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
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
18 changes: 0 additions & 18 deletions docs/_sidebar.md

This file was deleted.

4 changes: 0 additions & 4 deletions docs/assets/css/global.css

This file was deleted.

Binary file removed docs/assets/img/brasao2.jpeg
Binary file not shown.
8 changes: 0 additions & 8 deletions docs/content/unidade1.md

This file was deleted.

8 changes: 0 additions & 8 deletions docs/content/unidade2.md

This file was deleted.

File renamed without changes.
Binary file added docs/img/brasao.ico
Binary file not shown.
Binary file added docs/img/brasao2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
44 changes: 0 additions & 44 deletions docs/index.html

This file was deleted.

File renamed without changes.
1 change: 1 addition & 0 deletions docs/missoes/missao1/fundamentos.md
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 added docs/stylesheets/extra.css
Empty file.
File renamed without changes.
80 changes: 80 additions & 0 deletions mkdocs.yml
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

0 comments on commit 911c1c9

Please sign in to comment.