diff options
| author | Kit La Touche <kit@transneptune.net> | 2024-11-04 22:31:27 -0500 |
|---|---|---|
| committer | Kit La Touche <kit@transneptune.net> | 2024-11-04 22:31:27 -0500 |
| commit | 1614fea76a6fc1f4d70ddb14b95e3004c79365ef (patch) | |
| tree | 68dbd755d8558e7feff876f07d76a2dd7a2df8d6 /tools/run | |
| parent | 2544de46eed6fd9493eff6e2d41a8aa5d169bf51 (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-x | tools/run | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
