Service files: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

17 April 2023

31 January 2023

  • curprev 10:5610:56, 31 January 2023Manetta talk contribs 1,063 bytes +1,063 Created page with "= Making the systemd service file = See: https://blog.miguelgrinberg.com/post/running-a-flask-application-as-a-service-with-systemd Useful: https://containersolutions.github.io/runbooks/posts/linux/debug-systemd-service-units/ sudo nano /etc/systemd/system/myflaskapp.service <source> [Unit] Description=<a description of your application> After=network.target [Service] User=<username> WorkingDirectory=<path to your app> ExecStart=<app start command> Restart=always..."