summaryrefslogtreecommitdiff
path: root/tools/run-frontend
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2024-11-28 19:11:31 -0500
committerOwen Jacobson <owen@grimoire.ca>2024-11-28 19:11:31 -0500
commit5ce6c9f6277c43caf7413cce255af7bdc947e74c (patch)
treed8976a15f1892dbc25b44c598c1323875cf67272 /tools/run-frontend
parent9da480d92c6d81139e77eb6542986cf588ae3386 (diff)
parentb715f4c6edcb1b8e8df274636b29f732bef65407 (diff)
Merge branch 'prop/fewer-run-modes'
Diffstat (limited to 'tools/run-frontend')
-rwxr-xr-xtools/run-frontend10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/run-frontend b/tools/run-frontend
new file mode 100755
index 0000000..14ff49c
--- /dev/null
+++ b/tools/run-frontend
@@ -0,0 +1,10 @@
+#!/bin/bash -e
+
+## tools/run-frontend [OPTIONS…]
+##
+## Runs a development server for the Pilcrow UI. Options are passed through to
+## the `npm run dev` command. This is best combined with the `API_SERVER`
+## environment variable, to configure the development server to connect to a
+## running Pilcrow instance.
+
+exec npm run dev -- --host "$@"