Python web app to publish documentation compiled using Sphinx
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
465 B

Python web app to publish documentation compiled using Sphinx
2 years ago
# Installation
``` shell
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:
``` shell
pip freeze > requirements.txt
```