Server service - joelimgu/autocab GitHub Wiki
A systemd service makes the server work in the backgrownd. So launching a service manually wont work if the service is started as it uses the same port.
To see if the service is running:
sudo systemctl status autocab.service
To start the service:
sudo systemctl start autocab.service
To stop the service:
sudo systemctl stop autocab.service
This service runs the file /var/www/autocab.joel.rs/server/server.py in the backgrownd, so to update the server you must:
- Update the file
sudo systemctl restart autocab.service