-
-
Notifications
You must be signed in to change notification settings - Fork 288
Expand file tree
/
Copy pathrender.yaml
More file actions
85 lines (83 loc) · 2.15 KB
/
Copy pathrender.yaml
File metadata and controls
85 lines (83 loc) · 2.15 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
services:
# The manager is a public web service so the exploit webhook is reachable from the outside;
# Bull Board is behind basic auth and the webhook requires its bearer token.
- type: web
name: indexer-manager
runtime: docker
repo: https://github.com/RevokeCash/revoke.cash
branch: master
dockerfilePath: ./apps/indexer/Dockerfile
dockerContext: .
region: virginia
plan: standard
numInstances: 1
healthCheckPath: /health
envVars:
- key: IS_MANAGER
value: 'true'
- key: PORT
value: '3001'
- key: NEON_USE_WEBSOCKET
value: 'true'
- key: DATABASE_URL
sync: false
- key: REDIS_URL
sync: false
- key: BULL_BOARD_USER
sync: false
- key: BULL_BOARD_PASSWORD
sync: false
- key: EXPLOIT_WEBHOOK_TOKEN
sync: false
- type: pserv
name: indexer-worker
runtime: docker
repo: https://github.com/RevokeCash/revoke.cash
branch: master
dockerfilePath: ./apps/indexer/Dockerfile
dockerContext: .
region: virginia
plan: standard
scaling:
minInstances: 1
maxInstances: 8
targetCPUPercent: 75
targetMemoryPercent: 75
envVars:
- key: PORT
value: '3002'
- key: NEON_USE_WEBSOCKET
value: 'true'
- key: DATABASE_URL
sync: false
- key: REDIS_URL
sync: false
- type: pserv
name: auto-revoke-executor
runtime: docker
repo: https://github.com/RevokeCash/revoke.cash
branch: master
dockerfilePath: ./apps/auto-revoke-executor/Dockerfile
dockerContext: .
region: virginia
plan: standard
numInstances: 1
envVars:
- key: PORT
value: '3003'
- key: NEON_USE_WEBSOCKET
value: 'true'
- key: DATABASE_URL
sync: false
- key: REDIS_URL
sync: false
- key: AUTO_REVOKE_EXECUTOR_PRIVATE_KEY
sync: false
- key: AUTO_REVOKE_URGENT_EXECUTOR_PRIVATE_KEY
sync: false
- key: COINGECKO_API_KEY
sync: false
- key: UPSTASH_REDIS_REST_URL
sync: false
- key: UPSTASH_REDIS_REST_TOKEN
sync: false