From 1614fea76a6fc1f4d70ddb14b95e3004c79365ef Mon Sep 17 00:00:00 2001 From: Kit La Touche Date: Mon, 4 Nov 2024 22:31:27 -0500 Subject: 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. --- tools/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/run') 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 -- cgit v1.2.3