Python web app to publish documentation compiled using Sphinx
Go to file
2022-08-12 13:37:50 +02:00
src Added web api that can build a document 2022-08-12 13:37:50 +02:00
.gitignore Added web api that can build a document 2022-08-12 13:37:50 +02:00
debug.sh Basic app using Flask 2022-08-09 23:43:22 +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

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