Files
mock-data/ecosystem.config.js

22 lines
399 B
JavaScript
Raw Normal View History

2026-04-06 00:17:17 +07:00
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,
},
},
],
};