-
Notifications
You must be signed in to change notification settings - Fork 0
Code & Documentation Organization + Final Integrations #65
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
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
820c03b
initial comit com roadmap atualizado
032f90f
Merge remote-tracking branch 'origin/master' into migrate-docs-github…
4db1fdb
docs: update roadmap with Dependabot package updates (11 Dec 2025)
cd415e9
docs: Sprint 3 Parte 1 - Setup MkDocs e correções de links
808942d
docs: corrigir links quebrados e warnings do MkDocs
680705b
docs: navegação em português no MkDocs
939f691
docs: adicionar API Reference e corrigir warnings da pipeline
57182e8
docs: corrigir formatação markdown (markdownlint compliance)
ee7334d
docs: curadoria Sprint 3 - consolidação massiva de documentação
1a089b5
chore: reorganizar arquivos de configuração
409223f
fix: remover cache pip do workflow docs (requirements.txt deletado)
1c0795d
docs: corrigir reviews - links, anchors, mojibake e estrutura
d76cb88
fix(ServiceCatalogs): corrigir S2139 - adicionar contexto ao rethrow …
d808aa3
docs: traduzir index.md completamente para português
136ef55
docs: adicionar seção MkDocs ao README principal
5ab45bc
docs: traduzir metadados do site no mkdocs.yml
af84722
docs: corrigir anchors e deletar arquivo duplicado
7cbbd10
docs: traduzir documentação para português e corrigir estruturas
5a66712
docs: corrigir links internos quebrados e melhorar estrutura de seções
fae426c
docs: aplicar correções do code review
4a74808
docs: corrigir problemas de markdownlint
5a2859b
docs: corrigir todos os code fences desbalanceados em database.md
c0a73b0
docs(database): corrigir fences yaml desbalanceados
cde67a9
docs: corrigir fence csharp antes de heading em database.md
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
This file contains hidden or 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,69 @@ | ||
| name: Documentation | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - master | ||
| - migrate-docs-github-pages | ||
| paths: | ||
| - 'docs/**' | ||
| - 'mkdocs.yml' | ||
| - '.github/workflows/docs.yml' | ||
| pull_request: | ||
| branches: | ||
| - master | ||
| paths: | ||
| - 'docs/**' | ||
| - 'mkdocs.yml' | ||
| - '.github/workflows/docs.yml' | ||
| workflow_dispatch: | ||
|
|
||
| permissions: | ||
| contents: read | ||
| pages: write | ||
| id-token: write | ||
|
|
||
| concurrency: | ||
| group: "pages" | ||
| cancel-in-progress: false | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
|
|
||
| - name: Setup Python | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.12' | ||
|
|
||
| - name: Install dependencies | ||
| run: | | ||
| pip install --upgrade pip | ||
| pip install mkdocs-material | ||
| pip install mkdocs-git-revision-date-localized-plugin | ||
|
|
||
| - name: Build documentation | ||
| run: mkdocs build | ||
|
|
||
| - name: Upload artifact | ||
| if: github.ref == 'refs/heads/master' | ||
| uses: actions/upload-pages-artifact@v3 | ||
| with: | ||
| path: ./site | ||
|
|
||
| deploy: | ||
| if: github.ref == 'refs/heads/master' | ||
| environment: | ||
| name: github-pages | ||
| url: ${{ steps.deployment.outputs.page_url }} | ||
| runs-on: ubuntu-latest | ||
| needs: build | ||
| steps: | ||
| - name: Deploy to GitHub Pages | ||
| id: deployment | ||
| uses: actions/deploy-pages@v4 |
This file contains hidden or 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
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -140,3 +140,6 @@ legacy-analysis-report.* | |
|
|
||
| # Archived scripts | ||
| .archive/ | ||
|
|
||
| # MkDocs build output | ||
| site/ | ||
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.