mirror of
https://github.com/prowler-cloud/prowler.git
synced 2025-12-18 21:07:48 +00:00
26 lines
774 B
YAML
26 lines
774 B
YAML
# .readthedocs.yaml
|
|
# Read the Docs configuration file
|
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
|
|
|
# Required
|
|
version: 2
|
|
|
|
build:
|
|
os: "ubuntu-22.04"
|
|
tools:
|
|
python: "3.11"
|
|
jobs:
|
|
post_create_environment:
|
|
# Install poetry
|
|
# https://python-poetry.org/docs/#installing-manually
|
|
- python -m pip install poetry
|
|
post_install:
|
|
# Install dependencies with 'docs' dependency group
|
|
# https://python-poetry.org/docs/managing-dependencies/#dependency-groups
|
|
# VIRTUAL_ENV needs to be set manually for now.
|
|
# See https://github.com/readthedocs/readthedocs.org/pull/11152/
|
|
- VIRTUAL_ENV=${READTHEDOCS_VIRTUALENV_PATH} python -m poetry install --only=docs
|
|
|
|
mkdocs:
|
|
configuration: mkdocs.yml
|