Update environment configuration to specify PORT for development and production environments

This commit is contained in:
yoosangwook 2025-05-28 18:23:16 +09:00
parent 15b1cc84fd
commit 636ac163dd
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,
}, },
}, },
], ],