readthedocs.yaml

Read the Docs configuration file used to build this docs:

.readthedocs.yaml
 1version: 2
 2
 3build:
 4  os: ubuntu-22.04
 5  tools:
 6    python: "latest"
 7    nodejs: "latest"
 8  apt_packages:
 9    - tree
10    - libasound2
11  jobs:
12    post_checkout:
13     # Test we can use a PUBLIC environment variable in a command
14     - echo ${PUBLIC}
15
16    pre_build:
17      - shot-scraper install
18      - shot-scraper https://datasette.io/ --height 800 -o docs/static/datasette.png
19
20    post_install:
21      # Test jsdoc
22      - npm install -g jsdoc
23
24
25sphinx:
26  configuration: docs/conf.py
27
28python:
29  install:
30    - requirements: requirements.txt