mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 12:18:02 +03:00
chore: add local<->public test script
This commit is contained in:
parent
f377d60ba9
commit
dae6c0c71a
1 changed files with 12 additions and 0 deletions
12
test/test-local.sh
Executable file
12
test/test-local.sh
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/bin/bash
|
||||
|
||||
# This script will make your local Owncast server available at a public URL.
|
||||
# It's particularly useful for testing on mobile devices.
|
||||
|
||||
PORT=8080
|
||||
USERNAME=$(whoami)
|
||||
BRANCH=$(git symbolic-ref --short -q HEAD | sed 's/[^a-z A-Z 0-9]//g')
|
||||
HOSTNAME="oc-$USERNAME-$BRANCH"
|
||||
|
||||
echo "Please wait. Making the local server port $PORT available at https://$HOSTNAME.serveo.net"
|
||||
ssh -R "$HOSTNAME".serveo.net:80:localhost:$PORT serveo.net
|
Loading…
Reference in a new issue