Skip to content

Commit

Permalink
Added the simple client test
Browse files Browse the repository at this point in the history
console.log("CUSTOM CLIENT TEST - AEL BRANCH - 2/12/2024");

in hub.js
  • Loading branch information
jdbolter committed Feb 12, 2024
1 parent 5957689 commit d94f0e5
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
Binary file added .retpack/retpack.tar.gz
Binary file not shown.
18 changes: 18 additions & 0 deletions retpack.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash

if ! command -v docker &> /dev/null; then
echo "ERR: this script requires docker (https://docs.docker.com/engine/install/)"
exit 1
fi

DOCKER_DEFAULT_PLATFORM=linux/amd64
echo -e "\n ### building ### "
docker build -f RetPageOriginDockerfile -t hubs:retpack .

echo -e "\n ### packing ### "
docker run -v $PWD/.retpack/:/tmp/ \
--entrypoint sh hubs:retpack \
-c 'cd /www/hubs/ && tar -czvf /tmp/retpack.tar.gz .'

echo -e "\n ### done ### "
ls -lha ./.retpack/retpack.tar.gz
2 changes: 2 additions & 0 deletions src/hub.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
console.log("THIS IS THE AEL CLIENT! Feb 11 2024");

import {
getCurrentHubId,
updateVRHudPresenceCount,
Expand Down

0 comments on commit d94f0e5

Please sign in to comment.