您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

28 行
500B

  1. .SILENT:
  2. .PHONY: docs docs-server docs-watch docs-sync-server
  3. _invalid:
  4. echo "Specify a target name to execute"
  5. docs:
  6. sphinx-build -b html \
  7. docs \
  8. _build/docs \
  9. -Wqaj8
  10. echo "Docs generated to _build/docs"
  11. docs-server: docs
  12. echo "Docs are visible on http://localhost:9794/"
  13. cd _build/docs && \
  14. python -m http.server 9794
  15. docs-watch: docs
  16. +sh tools/docs-watch.sh
  17. docs-sync-server: docs
  18. cd _build/docs && \
  19. browser-sync start --server \
  20. --reload-delay 300 \
  21. --watch **/*.html