Initial commit gov-llm-v2
This commit is contained in:
25
ecosystem.config.cjs
Executable file
25
ecosystem.config.cjs
Executable file
@@ -0,0 +1,25 @@
|
||||
|
||||
module.exports = {
|
||||
apps: [
|
||||
{
|
||||
name: 'gov-back',
|
||||
script: './backend-server/index.js',
|
||||
cwd: './',
|
||||
env: {
|
||||
NODE_ENV: 'production',
|
||||
PORT: 3001
|
||||
},
|
||||
watch: false
|
||||
},
|
||||
{
|
||||
name: 'gov-front',
|
||||
script: 'npm',
|
||||
args: 'run dev',
|
||||
cwd: './',
|
||||
watch: false,
|
||||
env: {
|
||||
NODE_ENV: 'development'
|
||||
}
|
||||
}
|
||||
]
|
||||
};
|
||||
Reference in New Issue
Block a user