File: //storage03/relica/install_instructions.txt
Relica - Linux Installation Instructions
========================================
The recommended/easiest way is to use our one-step installer script:
https://relica.run
which has instructions at the top of the file. However, if you
prefer to download and install Relica manually, follow these steps:
Open a terminal.
Navigate to (cd into) the folder where the .tar.gz was downloaded,
for example:
$ cd ~/Downloads
Extract the archive into a folder, for example (this requires root
privileges because of the location):
$ sudo tar -xzf relica_*.tar.gz -C /opt
Take ownership of the application folder (subsequent commands in this
folder will not require root privileges):
$ sudo chown -R $(id -u):$(id -g) /opt/relica
Then run relica; put it in the background to free up your terminal:
$ /opt/relica/bin/relica &
The UI will appear in your browser, where you can log in and start
using Relica.
OPTIONAL: If you plan on using Relica's CLI, you may want to add it
to your PATH:
$ export PATH=$PATH:/opt/relica/bin
Add that command to your ~/.bashrc or ~/.bash_profile to make it
permanent.