diff --git a/dev.local.ecosystem.config.js b/dev.local.ecosystem.config.js new file mode 100644 index 00000000..f508bdcc --- /dev/null +++ b/dev.local.ecosystem.config.js @@ -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, + }, + }, + ], +}