Update environment configuration to specify PORT for development and production environments #70

Merged
swyoo merged 1 commits from hotfix/eco-system into dev-deploy 2025-05-28 18:24:03 +09:00
2 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,7 @@ module.exports = {
exec_mode: 'fork', exec_mode: 'fork',
env: { env: {
NODE_ENV: 'development', NODE_ENV: 'development',
PORT: 5010,
}, },
}, },
], ],

View File

@ -7,6 +7,7 @@ module.exports = {
exec_mode: 'cluster', exec_mode: 'cluster',
env: { env: {
NODE_ENV: 'production', NODE_ENV: 'production',
PORT: 5000,
}, },
}, },
], ],