This commit is contained in:
Kris Lamoureux 2021-10-11 20:57:38 -04:00
parent ed9100bc8f
commit e86a669d9d
4 changed files with 32 additions and 0 deletions

2
.gitignore vendored
View File

@ -8,5 +8,7 @@
!dockerbox.yml
!hypervisor.yml
!minecraft.yml
!mkdocs.yml
!unifi.yml
/environments/
/site/

1
docs/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
python

23
mkdocs.yml Normal file
View File

@ -0,0 +1,23 @@
site_name: moxie
site_author: Kris Lamoureux
copyright: Copyright © 2021 Kris Lamoureux
# Repository
repo_name: krislamo/moxie
repo_url: https://github.com/krislamo/moxie
theme:
name: material
palette:
primary: black
icon:
logo: material/server
extra:
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/krislamo
#nav:
# - Home: index.md

6
serve-docs.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
[ ! -d "./docs/python" ] && python3 -m venv ./docs/python
. ./docs/python/bin/activate
pip install mkdocs-material==7.3.3
mkdocs serve
deactivate