fortran-lang / playground

An interactive Fortran playground
MIT License
34 stars 12 forks source link

How to persist the server between reboots in production? #29

Closed milancurcic closed 2 years ago

milancurcic commented 2 years ago

We need to ensure that all servers (Python, Node.js, reverse proxy server) start on boot. I've been using systemd for this, and I think it's a common solution for this problem. Is there a better way to do this?

Docker daemon runs in its own systemd service so nothing for us to do there.

awvwgk commented 2 years ago

systemd seems like the choice most Linux distributions are opting for. There is also extensive documentation available, like in the Arch Wiki: https://wiki.archlinux.org/title/Systemd.

milancurcic commented 2 years ago

Fixed by #32.