vi /etc/systemd/system/{アプリケーション名}.service
[Service]
WorkingDirectory=/root/{アプリケーションディレクトリ}
ExecStart=/root/.deno/bin/deno run --watch --allow-all --unstable server/index.js
[Install]
WantedBy=multi-user.target
systemctl enable {アプリケーション名}.service
systemctl start {アプリケーション名}.service
systemctl stop {アプリケーション名}.service
systemctl disable {アプリケーション名}.service