mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-01-25 02:08:11 +00:00
24 lines
543 B
YAML
24 lines
543 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.9"
|
|
jobs:
|
|
post_create_environment:
|
|
# Install poetry
|
|
# https://python-poetry.org/docs/#installing-manually
|
|
- pip install poetry
|
|
# Tell poetry to not use a virtual environment
|
|
- poetry config virtualenvs.create false
|
|
post_install:
|
|
- poetry install -E docs
|
|
|
|
mkdocs:
|
|
configuration: mkdocs.yml
|