1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

docs - typo fix and adjusting powershell for mkdocs dev

This commit is contained in:
silversword411 2022-05-26 13:49:17 -04:00
parent c76aa4dd03
commit 0a8a6bda1d
2 changed files with 2 additions and 1 deletions

View file

@ -0,0 +1,20 @@
# This is for running mkdocs locally on windows only.
# Make sure you change directory to your docs folder before starting this process
# Use the "Run Selection" in VSCode to run the code blocks as-needed
#Activate python
python -m venv env
.\env\Scripts\activate
#Install requirements first time only
python -m pip install --upgrade pip #only 1st time
pip install pytest #only 1st time
pip install mkdocs #only 1st time
pip install mkdocs-material #only 1st time
#Run mkdocs and look at changes as you make them
mkdocs serve
start http://localhost:8010 #Opens Browser
#Stop python
deactivate