We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a99e5e commit fcfaf3eCopy full SHA for fcfaf3e
1 file changed
docs/Makefile
@@ -179,8 +179,10 @@ dev:
179
$(MAKE) -j watch serve
180
181
start:
182
- poetry run sphinx-autobuild "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) --port ${HTTP_PORT} --watch ".." --ignore "../.venv" $(O)
+ poetry run sphinx-autobuild "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) --port ${HTTP_PORT} $(O)
183
184
design:
185
# This adds additional watch directories (for _static file changes) and disable incremental builds
186
- poetry run sphinx-autobuild "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) --port ${HTTP_PORT} --watch ".." --ignore "../.venv" -a $(O)
+ poetry run sphinx-autobuild "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) --port ${HTTP_PORT} \
187
+ --watch ".." --ignore "../.*" --ignore "_build" -a \
188
+ $(O)
0 commit comments