-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathecosystem.config.js
More file actions
50 lines (50 loc) · 1.12 KB
/
ecosystem.config.js
File metadata and controls
50 lines (50 loc) · 1.12 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
module.exports = {
apps: [
{
name: "mirofish-server",
script: "skills/mirofish-server/scripts/mirofish_server.py",
interpreter: "python",
args: "--port 8765",
autorestart: true,
watch: false,
env: {
PYTHONUNBUFFERED: "1"
}
},
{
name: "opencode-dashboard",
script: "nexus/dashboard_server.py",
interpreter: "python",
args: "--porta 8081",
autorestart: true,
watch: false,
env: {
PYTHONUNBUFFERED: "1"
}
},
{
name: "self-healer",
script: "nexus/self_healer.py",
interpreter: "python",
args: "--auto",
autorestart: true,
restart_delay: 300000, // Intervalo de 5 minutos entre execuções
watch: false,
env: {
PYTHONUNBUFFERED: "1"
}
},
{
name: "evolution-loop",
script: "nexus/evolution_loop.py",
interpreter: "python",
args: "--run-cycle",
autorestart: true,
restart_delay: 600000, // Intervalo de 10 minutos entre execuções
watch: false,
env: {
PYTHONUNBUFFERED: "1"
}
}
]
};