11 lines
161 B
Bash
11 lines
161 B
Bash
#!/bin/bash
|
|
|
|
python3.12 -m venv tmp_venv/
|
|
source tmp_venv/bin/activate
|
|
|
|
pip install -r docs/requirements.txt
|
|
|
|
sphinx-build -b html docs public
|
|
|
|
rm -rf tmp_venv/
|