forked from pastelsky/bundlephobia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
process.yml
38 lines (36 loc) · 900 Bytes
/
process.yml
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
apps:
- script: './index.js'
args: '--project tsconfig.server.json ./index.ts'
name: main
instances: 1
max_memory_restart: 500M
error_file: logs/index.log
out_file: logs/index.log
kill_timeout: 20000
exec_mode: cluster
env:
NODE_ENV: production
DEBUG: 'bp:*'
PORT: 5400
- script: ./build-service/index.js
name: build-service
instances: 3
max_memory_restart: 1000M
exec_mode: cluster
error_file: logs/build-service.log
out_file: logs/build-service.log
kill_timeout: 20000
env:
NODE_ENV: production
DEBUG: 'bp:*'
- script: ./cache-service/index.js
name: cache-service
instances: 1
max_memory_restart: 200M
exec_mode: cluster
kill_timeout: 5000
error_file: logs/cache-service.log
out_file: logs/cache-service.log
env:
NODE_ENV: production
DEBUG: 'bp:*'