23 lines
442 B
JavaScript
23 lines
442 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: 'charging-station-mock',
|
|
script: 'server.js',
|
|
interpreter: 'bun',
|
|
instances: 1,
|
|
autorestart: true,
|
|
watch: false,
|
|
max_memory_restart: '500M',
|
|
env: {
|
|
NODE_ENV: 'development',
|
|
PORT: 3100,
|
|
},
|
|
env_production: {
|
|
NODE_ENV: 'production',
|
|
PORT: 3100,
|
|
BASE_URL: 'https://mb.luulam.dev',
|
|
},
|
|
},
|
|
],
|
|
};
|