mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-14 23:52:55 +11:00
Fix arguments for sphinx-autobuild in Makefile (#150)
This commit is contained in:
parent
735f25cc04
commit
b24e9fd3b0
1 changed files with 2 additions and 2 deletions
4
Makefile
4
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
|
||||
|
|
Loading…
Reference in a new issue