Create .readthedocs.yaml

Read the docs test
This commit is contained in:
Dennis Dornon 2025-04-08 15:16:08 -04:00 committed by GitHub
parent 8664cc48e4
commit 5c17040bf0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

21
.readthedocs.yaml Normal file
View file

@ -0,0 +1,21 @@
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Set the OS, Python version, and other tools you might need
build:
os: ubuntu-24.04
tools:
nodejs: "22"

commands:
# Install Docusaurus dependencies
- cd docs/ && npm install
# Build the site
- cd docs/ && npm run build
# Copy generated files into Read the Docs directory
- mkdir --parents $READTHEDOCS_OUTPUT/html/
- cp --recursive docs/build/* $READTHEDOCS_OUTPUT/html/