Files
mock-data/ecosystem.config.cjs

24 lines
485 B
JavaScript
Raw Permalink Normal View History

2026-04-06 00:33:27 +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,
2026-04-08 22:33:47 +07:00
BASE_URL: 'https://mb.luulam.dev',
2026-04-06 00:33:27 +07:00
},
env_production: {
NODE_ENV: 'production',
PORT: 3100,
2026-04-06 23:25:26 +07:00
BASE_URL: 'https://mb.luulam.dev',
2026-04-06 00:33:27 +07:00
},
},
],
};