Python web app to publish documentation compiled using Sphinx
Go to file
2022-08-13 15:05:18 +02:00
src Added web API to clone a document from a remote git repository 2022-08-13 15:05:18 +02:00
.gitignore Added web api that can build a document 2022-08-12 13:37:50 +02:00
debug.sh fixed shebang 2022-08-13 12:37:48 +02:00
LICENSE Initial commit 2022-08-08 22:05:34 +01:00
README.md added python requirements 2022-08-11 22:31:05 +02:00
requirements.txt Added web api that can build a document 2022-08-12 13:37:50 +02:00
test-document-clone.sh pulling before building 2022-08-13 12:38:25 +02:00

Python web app to publish documentation compiled using Sphinx

Installation

cd sphinx-web
python3 -m venv venv
source venv/bin/activate # on Windows execute instead: venv\Scripts\activate.bat
python3 -m pip install -r requirements.txt

Development

Update dependencies

After activating the virtual environment, run this command to update the list of dependencies with what is currently installed:

pip freeze > requirements.txt