2024-08-31 12:27:34 -06:00
|
|
|
# dev.libre.is
|
|
|
|
|
|
|
|
Source code for the https://dev.libre.is documentation website.
|
|
|
|
|
|
|
|
# Build
|
|
|
|
How to build these docs.
|
|
|
|
|
|
|
|
```
|
|
|
|
git clone https://code.libre.is/libre/dev-libre-is
|
|
|
|
# or
|
|
|
|
git clone git@code.libre.is:libre/dev-libre-is.git
|
|
|
|
|
|
|
|
cd dev-libre-is/
|
|
|
|
python -m venv venv
|
|
|
|
source venv/bin/activate
|
|
|
|
pip install -U pip poetry
|
|
|
|
poetry install
|
2024-09-02 06:29:10 -06:00
|
|
|
poetry update
|
2024-08-31 12:27:34 -06:00
|
|
|
make clean
|
|
|
|
make all
|
|
|
|
rsync -ultav docs/_build/html/ dev-libre-is:/var/www/html/dev-libre-is/
|
|
|
|
```
|