We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4a756e commit ded2daaCopy full SHA for ded2daa
.readthedocs.yml
@@ -0,0 +1,32 @@
1
+# Read the Docs configuration file
2
+# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3
+
4
+version: 2
5
6
+build:
7
+ os: "ubuntu-20.04"
8
+ apt_packages:
9
+ - npm
10
+ - plantuml
11
+ - texlive
12
+ tools:
13
+ nodejs: "16"
14
+ python: "3.10"
15
+ jobs:
16
+ post_install:
17
+ - npm install -g [email protected]
18
+ - npm install -g @mermaid-js/[email protected]
19
20
+# Set requirements to build the docs
21
+python:
22
+ install:
23
+ - requirements: docs/requirements.txt
24
25
+# Build documentation in the docs/ directory with Sphinx
26
+sphinx:
27
+ configuration: docs/conf.py
28
+ builder: html
29
30
+# Optionally build your docs in additional formats such as PDF and ePub
31
+formats: all
32
0 commit comments