Add local development ecosystem configuration for Next.js application.

This commit is contained in:
yoosangwook 2025-05-29 14:48:11 +09:00
parent c4e5aa1b01
commit 2ed020bbcc

View File

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