Merge pull request 'Add local development ecosystem configuration for Next.js application.' (#78) from feature/chore-env into dev

Reviewed-on: #78
This commit is contained in:
swyoo 2025-05-29 14:48:40 +09:00
commit 09e5b17fe4

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,
},
},
],
}