add websocket server to this dir. fix stuff for client

This commit is contained in:
2024-10-30 15:12:52 -05:00
parent f8152c6db8
commit 4886bc5b1f
3058 changed files with 1201180 additions and 2 deletions

17
websocket_server/node_modules/.bin/tsc-watch generated vendored Executable file
View File

@ -0,0 +1,17 @@
#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -z "$NODE_PATH" ]; then
export NODE_PATH="/home/gib/Documents/Web/wavelength/websocket-server/node_modules/.pnpm/tsc-watch@6.2.0_typescript@5.6.3/node_modules/tsc-watch/dist/lib/node_modules:/home/gib/Documents/Web/wavelength/websocket-server/node_modules/.pnpm/tsc-watch@6.2.0_typescript@5.6.3/node_modules/tsc-watch/dist/node_modules:/home/gib/Documents/Web/wavelength/websocket-server/node_modules/.pnpm/tsc-watch@6.2.0_typescript@5.6.3/node_modules/tsc-watch/node_modules:/home/gib/Documents/Web/wavelength/websocket-server/node_modules/.pnpm/tsc-watch@6.2.0_typescript@5.6.3/node_modules:/home/gib/Documents/Web/wavelength/websocket-server/node_modules/.pnpm/node_modules"
else
export NODE_PATH="/home/gib/Documents/Web/wavelength/websocket-server/node_modules/.pnpm/tsc-watch@6.2.0_typescript@5.6.3/node_modules/tsc-watch/dist/lib/node_modules:/home/gib/Documents/Web/wavelength/websocket-server/node_modules/.pnpm/tsc-watch@6.2.0_typescript@5.6.3/node_modules/tsc-watch/dist/node_modules:/home/gib/Documents/Web/wavelength/websocket-server/node_modules/.pnpm/tsc-watch@6.2.0_typescript@5.6.3/node_modules/tsc-watch/node_modules:/home/gib/Documents/Web/wavelength/websocket-server/node_modules/.pnpm/tsc-watch@6.2.0_typescript@5.6.3/node_modules:/home/gib/Documents/Web/wavelength/websocket-server/node_modules/.pnpm/node_modules:$NODE_PATH"
fi
if [ -x "$basedir/node" ]; then
exec "$basedir/node" "$basedir/../tsc-watch/dist/lib/tsc-watch.js" "$@"
else
exec node "$basedir/../tsc-watch/dist/lib/tsc-watch.js" "$@"
fi