Skip to content

Commit

Permalink
Subindo documentação
Browse files Browse the repository at this point in the history
  • Loading branch information
wildemberg-sales committed Apr 7, 2024
1 parent 30a3c11 commit 9a090fb
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 19 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: ci
on:
push:
branches:
- docs
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
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
# Plants-Diseases
Repositório destinado a criação de um modelo de aprendizado de máquina para identificação de doenças em plantas.
# 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.
19 changes: 2 additions & 17 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,2 @@
# 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.
# Plants-Diseases
Repositório destinado a criação de um modelo de aprendizado de máquina para identificação de doenças em plantas.
20 changes: 20 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1 +1,21 @@
site_name: Plants Diseases

copyright: "Copyright © 2023"

theme:
name: material
language: "pt"
palette:
primary: dark blue
accent: green
features:
- navigation.tabs
font:
text: "Open Sans"
code: "sans-serif"
# logo: assets/logo.png
# favicon: assets/logo.png


nav:
- Início: index.md

0 comments on commit 9a090fb

Please sign in to comment.