Youen Toupin
2 years ago
2 changed files with 28 additions and 2 deletions
@ -1,3 +1,20 @@
|
||||
# sphinx-web |
||||
|
||||
Python web app to publish documentation compiled using Sphinx |
||||
|
||||
# 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 |
||||
``` |
||||
|
Loading…
Reference in new issue