Skip to content

Commit

Permalink
update process for pm2
Browse files Browse the repository at this point in the history
  • Loading branch information
VictoriqueMoe committed Mar 4, 2024
1 parent 17f11b8 commit 3cd8f1a
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions processes.config.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
module.exports = [{
script: './dist/index.js',
name: 'host_my_shit',
time: true,
source_map_support: true,
watch: false,
autorestart: true,
error_file: './logs/err.log',
out_file: './logs/out.log',
log_file: './logs/combined.log',
env: {
NODE_ENV: "production"
}
}];
module.exports = [
{
script: "./dist/index.js",
name: "waifu_valt",
time: true,
source_map_support: true,
watch: false,
autorestart: true,
error_file: "./logs/err.log",
out_file: "./logs/out.log",
log_file: "./logs/combined.log",
env: {
NODE_ENV: "production",
},
},
];

0 comments on commit 3cd8f1a

Please sign in to comment.