Skip to content

Instantly share code, notes, and snippets.

@joepie91
joepie91 / .service
Last active February 4, 2024 22:34
systemd service file example for Node.js
[Unit]
After=network.target
Description=Hello World App
[Service]
Environment="NODE_ENV=production"
ExecStart=/usr/bin/node /home/foo/test/index.js
Restart=on-failure
User=foo