This workshop is powered by MkDocs which facilitates easy management of website content and publishing.
# build a virtual Python environment in isolation
python3 -m venv geopython-workshop
cd geopython-workshop
# download the website from GitHub
git clone https://github.com/geopython/geopython-workshop.git
cd geopython-workshop/web
# install required dependencies
pip install -r requirements.txt
# build the website
mkdocs build
# serve locally
mkdocs serve # website is made available on http://localhost:8000/
The basic workflow is as follows:
- manage content
- commit updates
- publish to the live site
vi docs/new-page.md # add content
vi mkdocs.yml # add to navigation section
# edit any other files necessary which may want to link to the new page
git add docs/new-page.md
git commit -m 'add new page on topic x' docs/new-page.md mkdocs.yml
git push origin master
Like adding a page. Edit and commit/push.
Updates are automatically pushed to GitHub Pages. To publish updates manually:
# NOTE: you require access privileges to the GitHub repository
# to publish live updates
mkdocs gh-deploy -m 'add new page on topic x'