Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
Commit 6ea8c339 authored by Deepak Khatri's avatar Deepak Khatri 🐶
Browse files

Merge branch 'venv-support' into 'main'

Add requirements.txt

See merge request !10
parents e035ed03 8904c9df
1 merge request!10Add requirements.txt
Pipeline #10025 passed with stages
in 8 seconds
...@@ -14,6 +14,9 @@ help: ...@@ -14,6 +14,9 @@ help:
.PHONY: help Makefile .PHONY: help Makefile
livehtml:
sphinx-autobuild "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
# Catch-all target: route all unknown targets to Sphinx using the new # Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile %: 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