node-cron と shelljs を使用してノードで js ファイルを実行するタスクを設定しようとしています。これを正しく設定していますか?
const cron = require('node-cron');
const shell = require('shelljs');
cron.schedule('0 0 0 * * *', () => {
console.log('Task started');
if (shell.exec("NODE_ENV=production node /opt/ec2-user/services/D3/script.js >> /opt/ec2-user/logs/script.log").code !== 0) {
shell.exit(1);
} else {
console.log('Task completed');
}
}, true);