Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 0 additions & 64 deletions .github/workflows/mdbook.yml

This file was deleted.

42 changes: 42 additions & 0 deletions .github/workflows/mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Deploy MkDocs site to Pages

on:
push:
branches: ["main", "migrate-to-mkdocs"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup pages
id: pages
uses: actions/configure-pages@v5
- name: Install MkDocs
run: |
pip install --upgrade pip
pip install --upgrade mkdocs mkdocs-material
- name: Build with MkDocs
run: |
mkdocs build -f ./src/mkdocs.yml
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./src/site
deploy:
runs-on: ubuntu-latest
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
tools/
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM python:3.13.7-alpine

RUN pip install --upgrade pip
RUN pip install --upgrade mkdocs mkdocs-material

ENTRYPOINT ["mkdocs"]
8 changes: 0 additions & 8 deletions book.toml

This file was deleted.

10 changes: 10 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
services:
server:
image: localhost${PWD}
build: .
working_dir: /mnt/src
volumes:
- ./src:/mnt/src:ro
ports:
- 8000:8000
command: ["serve", "-a", "0.0.0.0:8000"]
36 changes: 0 additions & 36 deletions docs/INTRODUCTION.md

This file was deleted.

33 changes: 0 additions & 33 deletions docs/SUMMARY.md

This file was deleted.

Loading