Wiki > Send
"A fork of Mozilla's Firefox Send. Mozilla discontinued Send, this fork is a community effort to keep the project up-to-date and alive."
Installation
-
Clone the github repo
git clone https://gitlab.com/timvisee/send.git
-
Move into the directory
cd send
-
Install dependencies
npm install
-
Run the application
screen -dmS send npm run prod
Send will be accessible at https://umbriel.whatbox.ca:1443
Automatically Restart
-
Make a file to be used for the script.
touch ~/send_restart.cron
-
Edit the file and enter the text below.
nano -w ~/send_restart.cron
#!/bin/bash
if screen -ls | grep send | tr -d "[:space:]" > /dev/null
then
echo "Send is running."
else
echo "Send is not running, starting Send."
cd ~/send && screen -dmS send npm run prod
fi
-
Save the file with Ctrl+x and the "y" and Enter to accept overwriting.
-
Make the script executable.
chmod +x ~/send_restart.cron
-
Open your crontab.
EDITOR=nano crontab -e
-
Enter the following text
@reboot /home/user/send_restart.cron >/dev/null 2>&1
*/5 * * * * /home/user/send_restart.cron >/dev/null 2>&1
- Save the crontab with Ctrl+x and the "y" and Enter to accept overwriting.