From b24e9fd3b07a500c44b569a2559977a2e2a52f96 Mon Sep 17 00:00:00 2001 From: August Feng <46177585+aug0stus@users.noreply.github.com> Date: Sun, 27 Jun 2021 13:35:19 -0400 Subject: [PATCH] Fix arguments for sphinx-autobuild in Makefile (#150) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a4b5d33..2ee2ca4 100644 --- a/Makefile +++ b/Makefile @@ -25,9 +25,9 @@ code-cleanup: ## Black and isort the Python codebase docs: ## Compile the documentation docker-compose run --rm app sphinx-build docs docs/_build/html -.PHONY: watch-docs +.PHONY: docs-watch docs-watch: ## Compile the documentation and watch for changes - docker-compose run -p 8000:8000 --rm app sphinx-autobuild -H 0 -p 8000 docs docs/_build/html + docker-compose run -p 8000:8000 --rm app sphinx-autobuild --host 0 --port 8000 docs docs/_build/html .PHONY: css css: ## Compile SCSS files