Skip to content

Instantly share code, notes, and snippets.

@tfkhdyt
Created February 8, 2023 01:34
Show Gist options
  • Save tfkhdyt/101548e04ae3954543c856215b5d982c to your computer and use it in GitHub Desktop.
Save tfkhdyt/101548e04ae3954543c856215b5d982c to your computer and use it in GitHub Desktop.
Simple Systemd service example
[Unit]
Description=Service description
[Service]
Type=simple
User=admin
WorkingDirectory=/home/admin/project-name
ExecStart=/usr/bin/node /home/admin/project-name/dist/index.js
Restart=on-failure
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment