2024-08-31 14:54:12 -06:00
|
|
|
============
|
2024-08-31 14:50:20 -06:00
|
|
|
dev.libre.is
|
|
|
|
============
|
|
|
|
Documentation for this present site.
|
|
|
|
|
|
|
|
`<https://dev.libre.is/>`_
|
|
|
|
|
2024-08-31 15:05:39 -06:00
|
|
|
Source code to site:
|
|
|
|
|
|
|
|
`<https://code.libre.is/libre/dev-libre-is>`_
|
|
|
|
|
2024-08-31 14:50:20 -06:00
|
|
|
|
|
|
|
Build
|
|
|
|
=====
|
|
|
|
HOWTO build this site.
|
|
|
|
|
|
|
|
.. code-block:: sh
|
|
|
|
|
|
|
|
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
|
|
|
|
make clean
|
|
|
|
make all
|
|
|
|
rsync -ultav docs/_build/html/ dev-libre-is:/var/www/html/dev-libre-is/
|
|
|
|
|