bdy sandbox endpoint
$bdy sandbox endpoint|ep [options] [command]
Manage sandbox endpoints
Examples
create http endpoint on port 80 (http server must listen on 0.0.0.0)bdy sb ep create sandbox-identifier -e 80$
create http server and serve files from sandbox directorybdy sb ep create sandbox-identifier -s /path/to/dir$
create tcp endpoint on port 22 with name (tcp server must listen on 0.0.0.0)bdy sb ep create sandbox-identifier -t TCP -e 22 -n test$
delete sandbox endpointbdy sb ep rm sandbox-identifier test$
delete sandbox endpoint in another project and automatically confirm deletionbdy sb ep rm sandbox-identifier test -p project -f$
get sandbox endpointbdy sb ep get sandbox-identifier test$
get sandbox endpoint in another projectbdy sb ep get sandbox-identifier test -p project$
list sandbox endpointsbdy sb ep ls sandbox-identifier$
list sandbox endpoints in another projectbdy sb ep ls sandbox-identifier -p project$