Merge pull request 'Add ecosystem configuration files for production environments with specified PORTs' (#72) from hotfix/eco-system into dev-deploy

Reviewed-on: #72
This commit is contained in:
swyoo 2025-05-28 18:48:47 +09:00
commit 52d25341de
2 changed files with 26 additions and 0 deletions

13
prd1.ecosystem.config.js Normal file
View File

@ -0,0 +1,13 @@
module.exports = {
apps: [
{
name: 'qcast-front-production',
script: 'node_modules/next/dist/bin/next',
instances: 1,
exec_mode: 'fork',
env: {
PORT: 5000,
},
},
],
}

13
prd2.ecosystem.config.js Normal file
View File

@ -0,0 +1,13 @@
module.exports = {
apps: [
{
name: 'qcast-front-production',
script: 'node_modules/next/dist/bin/next',
instances: 1,
exec_mode: 'fork',
env: {
PORT: 5001,
},
},
],
}