This commit is contained in:
2026-04-06 00:33:27 +07:00
parent 0f7e386e2a
commit 9f4370365a
4 changed files with 32 additions and 27 deletions

21
ecosystem.config.cjs Normal file
View File

@@ -0,0 +1,21 @@
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,
},
},
],
};