summaryrefslogtreecommitdiff
path: root/tools/run
diff options
context:
space:
mode:
authorKit La Touche <kit@transneptune.net>2024-11-04 22:31:27 -0500
committerKit La Touche <kit@transneptune.net>2024-11-04 22:31:27 -0500
commit1614fea76a6fc1f4d70ddb14b95e3004c79365ef (patch)
tree68dbd755d8558e7feff876f07d76a2dd7a2df8d6 /tools/run
parent2544de46eed6fd9493eff6e2d41a8aa5d169bf51 (diff)
Set up framework for testing touch events
This includes a change to tools/run that exposes the dev server on my local network. This change should not make it into the final form of this branch. This is so I can use actual for real touch events on my actual for real phone, hooked up for remote debugging to my computer so I can see console events etc.
Diffstat (limited to 'tools/run')
-rwxr-xr-xtools/run2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run b/tools/run
index 562a94d..ac42e93 100755
--- a/tools/run
+++ b/tools/run
@@ -6,7 +6,7 @@ if [ -z ${HI_DEV+x} ]; then
tools/build-ui
cargo run -- "$@"
else
- npm run dev & PIDS[0]=$!
+ npm run dev -- --host 192.168.68.57 & PIDS[0]=$!
cargo run -- "$@" & PIDS[1]=$!
trap "kill ${PIDS[*]}" SIGINT