Skip to content

GeospatialEnablingTechnologies/get.sdi.v.6.0.0-manual

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

get.sdi.v.6.0.0-manual

Manual page for GET SDI v6.0. Built with MkDocs + Material for MkDocs.

Development (Dev Container)

The repo includes a Dev Container with MkDocs and all dependencies preinstalled.

Requirements: Docker, plus one of: VS Code + Dev Containers extension, GitHub Codespaces, or the devcontainer CLI.

Open it:

  • VS Code: open the folder, then Reopen in Container.
  • CLI:
    devcontainer up --workspace-folder .
    devcontainer exec --workspace-folder . bash

Preview (live reload):

mkdocs serve --dev-addr 0.0.0.0:8000

Open http://127.0.0.1:8000 (port is forwarded automatically).

Build:

mkdocs build --strict

Without the container

python -m venv .venv
source .venv/bin/activate        # Windows: .venv\Scripts\activate
pip install mkdocs-material
mkdocs serve