Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Verified Commit 8904c9df authored by Ayush Singh's avatar Ayush Singh
Browse files

Add requirements.txt


- Adds support for python venv
- Also add support of hot-reload
- Add script to build virtual environment

Signed-off-by: default avatarAyush Singh <ayushdevel1325@gmail.com>
parent e035ed03
Branches
No related merge requests found
......@@ -14,6 +14,9 @@ help:
.PHONY: help Makefile
livehtml:
sphinx-autobuild "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
......
#!/bin/sh
if [ ! -e ./.venv ]; then
python3 -m venv .venv
fi
source ./.venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment