Mkdocs Material server to write documentation/notes
Create an virtual environment of Python on local drive, but write actual docs/notes on cloud drive. This way, the cloud drive does not need to sync a large amount of files from the virtual environment.
$mkdir docs_server
$cd docs_server
$virtualenv venv
$source venv/bin/activate
$pip install -r requirements.txt
- Create a root folder, e.g.
notes
. - Copy everything in the
docs
folder andmkdocs.yml
file from this repo to the root foldernotes
. - Change
site_name
andcopyright
in themkdocs.yml
file.
cd
to the folder ofdocs_server
.- Activiate the
venv
.source venv/bin/activate
cd
to the folder of documentation root folder likenotes
.- Run commmand
$mkdocs serve