An open-source, cross-platform solution to share files between devices.
TODO: Update URL once the executable file is uploaded
- Change working directory to desired installation directory
cd /foo/bar/
- Download the executable file
- Using curl:
curl -OJ *url*
- Using wget:
wget *url*
- Using curl:
- Make it executable
chmod +x *file_name*
- Create a folder and change the working directory
mkdir -p data/cert && cd data/cert
- Generate an RSA key
openssl genrsa -out server.key 4096
- To generate a self-signed certificate for a testing purpose, using the following command:
openssl req -new -x509 -sha256 -key server.key -out server.crt
- Change the working directory back to main installation directory
cd /foo/bar/
- Start the server
./coconut_server *optional_arguments*
TODO: Update build
TODO: Update arguments