Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,4 @@ docroot/status.xml
py_env
py_venv_local_sunpy
vendor
docroot/playground
4 changes: 4 additions & 0 deletions docs/src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ BUILDDIR = build
# Since sphinx forces an "html" folder with the documentation, we're going to
# move all that content into the docs/v2 folder
TARGET_DIR = ../../docroot/docs/v2
PLAYGROUND_TARGET_DIR = $(TARGET_DIR)/playground

# Put it first so that "make" without argument is like "make help".
help:
Expand All @@ -20,6 +21,9 @@ help:
docs: html
mkdir -p ${TARGET_DIR}
cp -r ${BUILDDIR}/html/* ${TARGET_DIR}
cp openapi.yaml ${TARGET_DIR}
mkdir -p ${PLAYGROUND_TARGET_DIR}
cp -r playground/* ${PLAYGROUND_TARGET_DIR}

# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
Expand Down
Loading
Loading