Skip to content

arisetransfer/arise

Repository files navigation

goreleaser GoDoc

Arise File Transfer

Transfer file between two devices using gRPC streams.

Installation

Using Go

go install github.com/arisetransfer/arise@latest

Or Download the binary from releases and add to your path

Setting up the config file

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"

Usage

To send a File

arise send filename

To Receive a File

arise receive unique_code

Setting Up The Server

Using Docker

docker pull ghcr.io/arisetransfer/arise:latest
docker run -d -p 6969:6969 ghcr.io/arisetransfer/arise:latest

Using CLI

arise relay

This will listen on port 6969

Help

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)

License

MIT