This repository has been archived on 2026-01-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
sdi/ChatGPT-CodeReview/pm2.config.cjs
2025-04-17 12:00:31 +09:00

10 lines
175 B
JavaScript

const config = {
apps : [{
name : 'Bot',
script : 'dist/index.js',
interpreter_args : '-r dotenv/config',
time: true
}]
}
module.exports = config;