Transfer file between two devices using gRPC streams.
Using Go
go install github.com/arisetransfer/arise@latest
Or Download the binary from releases and add to your path
Create the config file
mkdir -p $HOME/.arise/ && touch $HOME/.arise/config.toml
and add IP and Port of the Server
Example config.toml
# Configuration file for arise relay and port
ip = "127.0.0.1"
port = "6969"
arise send filename
arise receive unique_code
docker pull ghcr.io/arisetransfer/arise:latest
docker run -d -p 6969:6969 ghcr.io/arisetransfer/arise:latest
arise relay
This will listen on port 6969
NAME:
arise - Transfer file between two devices
USAGE:
arise [global options] command [command options] [arguments...]
COMMANDS:
send Send the file over relay
relay Start an arise relay on port default(6969)
receive Receive file using the unique code
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--help, -h show help (default: false)
MIT