This is the source for https://schemahero.io. This is a mkdocs site.
To to run the docs locally, you need to have python3
w/ pip3
installed as prerequisite.
- Create a virtual environment:
python3 -m venv venv
- Activate the virtual environment:
source venv/bin/activate
- Install the dependencies:
pip3 install -r requirements.txt
- Build the docs:
mkdocs build
- Run the development server:
mkdocs serve