Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
langtech-innovation
/
WhisperLiveKit
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
78ec87c
WhisperLiveKit
/
scripts
/
port_forwarding.sh
Marti Umbert
scripts/: some useful bash scripts to launch the server and do port forwarding
39e8fd5
7 months ago
raw
Copy download link
history
blame
138 Bytes
#!/bin/bash
IP=84.88.51.151
PORT=8000
USER=marti
cmd=
"ssh -L
$PORT
:localhost:
$PORT
-N -o GatewayPorts=yes
$USER
@
$IP
"
echo
$cmd
eval
$cmd