Start Tamari Automatically at System Boot
Make start script executable (must be in Tamari directory)
sudo chmod u+x start.sh
Create Systemd service
sudo nano /etc/systemd/system/tamari.service
Paste This (You must change “USERNAME”)
[Unit]
Description=Tamari Recipe Manager
After=syslog.target network.target
[Service]
Type=simple
WorkingDirectory=/home/USERNAME/Tamari
ExecStart=/home/USERNAME/Tamari/start.sh
Restart=always
RestartSec=15
[Install]
WantedBy=multi-user.target
Start the Systemd service
sudo systemctl enable tamari.service
sudo systemctl start tamari.service