~ajhalili2006's personal website, built with Zensical (successor of Material for Mkdocs) [old repo name got bugged while attempting to do manual knot migration via repo deletion]
andreijiroh.dev
zensical
mkdocs-material
website
1# Read the Docs configuration file for MkDocs projects
2# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3
4# Required
5version: 2
6
7# Set the version of Python and other tools you might need
8build:
9 os: ubuntu-22.04
10 tools:
11 python: "3.11"
12 #nodejs: 18
13 jobs:
14 post_checkout:
15 # Needed for some plugins/extensions to work
16 - git fetch --unshallow || true
17 post_build:
18 - |
19 mkdir $READTHEDOCS_OUTPUT/api
20 git rev-parse HEAD > $READTHEDOCS_OUTPUT/api/commit
21 - |
22 cp -rv markdown/.well-known $READTHEDOCS_OUTPUT/html/.well-known
23 cp $READTHEDOCS_OUTPUT/html/assets/images/favicon.png $READTHEDOCS_OUTPUT/favicon.ico
24 apt_packages:
25 - libcairo2-dev
26 - libfreetype6-dev
27 - libffi-dev
28 - libjpeg-dev
29 - libpng-dev
30 - libz-dev
31 - pngquant
32
33mkdocs:
34 configuration: mkdocs.readthedocs.yml
35 fail_on_warning: false
36
37# Optionally declare the Python requirements required to build your docs
38python:
39 install:
40 - requirements: requirements.txt