A Polymath-style benchmark site built with MkDocs and deployable on GitHub Pages.
- Python ≥ 3.7
- Git
- A GitHub account with a repo named
ci-benchmarksunder your username or organization.
-
Clone the repo
git clone https://github.com/Echo-Node/ci-benchmarks.git cd ci-benchmarks -
Create & activate a virtual environment
python3 -m venv .venv source .venv/bin/activate -
Install dependencies
pip install mkdocs-material pymdown-extensions
-
Serve locally
mkdocs serve
-
Commit any changes
git add . git commit -m "Ready for deploy"
-
Deploy with MkDocs
mkdocs gh-deploy
If you get a non-fast-forward error, force an overwrite with:
mkdocs gh-deploy --force