Merge pull request 'Update environment configuration to specify PORT for development and production environments' (#70) from hotfix/eco-system into dev-deploy

Reviewed-on: #70
This commit is contained in:
swyoo 2025-05-28 18:24:02 +09:00
commit e94542f15c
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,
}, },
}, },
], ],