Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

Latest commit

 

History

History
43 lines (25 loc) · 1.19 KB

README.md

File metadata and controls

43 lines (25 loc) · 1.19 KB

Archived repo

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.

Local Build

  1. Clone this repo (or your own fork of it)

    git clone https://github.com/geoblacklight/docs && cd docs
    
  2. 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
    
  3. Install Python requirements

    pip install mkdocs==1.4.3
    
  4. 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.