This repo was used for technical documentation of GeoBlacklight from ~2022-2024. Its content was merged into geoblacklight.github.io in February 2024.
This repository is for documentation of the GeoBlacklight application.
-
Clone this repo (or your own fork of it)
git clone https://github.com/geoblacklight/docs && cd docs
-
Create and activate a Python virtual environment with the tool of your choice (venv, conda, etc.). The following example uses
venv
.python3 -m venv env && source env/bin/activate
On Windows this will look something like
python -m venv env && env\Scripts\activate
-
Install Python requirements
pip install mkdocs==1.4.3
-
Build and serve the docs for autoreloading while you edit:
mkdocs serve
You can now access the documentation in a browser at http://localhost:8000
, and the page will be refreshed whenever you change the Markdown content in the docs
directory. Use Ctrl+C
to stop the server in the terminal.