We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1b41a5 commit c5873e3Copy full SHA for c5873e3
1 file changed
Makefile
@@ -0,0 +1,14 @@
1
+# Documentation site dev servers.
2
+#
3
+# make docs - run the Hugo docs site (docs/site) dev server
4
+# make astro - run the Astro docs site (docs/astro) dev server
5
6
+# The two sites are a bake-off: both read the same content in docs/site/content.
7
+
8
+.PHONY: docs astro
9
10
+docs:
11
+ cd docs/site && hugo server
12
13
+astro:
14
+ cd docs/astro && { [ -d node_modules ] || npm install; } && npm run dev
0 commit comments