Python web app to publish documentation compiled using Sphinx
Go to file
2022-08-14 19:11:57 +02:00
src minor fixes 2022-08-14 19:11:57 +02:00
.gitignore implemented authentication to access admin pages 2022-08-13 22:58:37 +02:00
debug_config.py refactored configuration system 2022-08-14 18:40:44 +02:00
debug.sh refactored configuration system 2022-08-14 18:40:44 +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