Init move to mkdocs
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
||||||
*.md.backup
|
*.md.backup
|
||||||
|
site
|
||||||
|
|
25
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
image: python:3.8-buster
|
||||||
|
|
||||||
|
before_script:
|
||||||
|
- pip install -r requirements.txt
|
||||||
|
|
||||||
|
test:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- mkdocs build --strict --verbose --site-dir test
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- test
|
||||||
|
except:
|
||||||
|
- master
|
||||||
|
|
||||||
|
pages:
|
||||||
|
stage: deploy
|
||||||
|
script:
|
||||||
|
- mkdocs build --strict --verbose
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- site
|
||||||
|
only:
|
||||||
|
- master
|
||||||
|
|
BIN
.requirements.txt.swp
Normal file
Before Width: | Height: | Size: 83 KiB After Width: | Height: | Size: 83 KiB |
3
docs/stylesheets/extra.css
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
:root {
|
||||||
|
--md-primary-fg-color: #ff7f00;
|
||||||
|
}
|
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 92 KiB |
Before Width: | Height: | Size: 114 KiB After Width: | Height: | Size: 114 KiB |
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 116 KiB After Width: | Height: | Size: 116 KiB |