-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathecosystem.config.js
More file actions
52 lines (43 loc) · 1.3 KB
/
ecosystem.config.js
File metadata and controls
52 lines (43 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/**
* PM2 Ecosystem Configuration for Node METAR Map
* Manages the application as a background service with automatic restarts
*
* The app now runs continuously and fetches METAR data at configured intervals.
* PM2 will auto-restart on crashes or excessive memory usage.
*/
module.exports = {
apps: [{
name: 'metar-map',
script: './dist/index.js',
// Instance configuration
instances: 1,
exec_mode: 'fork',
// Restart configuration
autorestart: true, // Auto-restart on crashes
max_restarts: 10, // Allow more restarts (continuous mode)
min_uptime: '30s', // Must run for 30s to be considered stable
restart_delay: 5000, // Wait 5s before restarting after crash
// Memory management
max_memory_restart: '200M',
// Logging
error_file: './logs/error.log',
out_file: './logs/output.log',
log_date_format: 'YYYY-MM-DD HH:mm:ss Z',
merge_logs: true,
// Environment
env: {
NODE_ENV: 'production'
},
// Additional options
kill_timeout: 5000, // Wait 5 seconds for graceful shutdown
listen_timeout: 3000,
// Don't watch files for changes in production
watch: false,
// Ignore watch patterns
ignore_watch: [
'node_modules',
'logs',
'.git'
]
}]
};