Prepare server deployment

This commit is contained in:
2026-05-12 16:21:00 +07:00
parent ac2cfca335
commit 713bfbcbb9
9 changed files with 120 additions and 16 deletions

13
ecosystem.config.cjs Normal file
View File

@ -0,0 +1,13 @@
module.exports = {
apps: [
{
name: 'wa-test-nextjs',
script: 'npm',
args: 'run start:3007',
cwd: '/var/www/wa-test-nextjs',
env: {
NODE_ENV: 'production',
},
},
],
}