-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrender.yaml
More file actions
49 lines (48 loc) · 1.2 KB
/
render.yaml
File metadata and controls
49 lines (48 loc) · 1.2 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
services:
# Main Discord Bot Service
- type: web
name: summarybot-ng
runtime: docker
repo: https://github.com/mrjcleaver/summarybot-ng
region: oregon
plan: starter
branch: main
dockerfilePath: ./Dockerfile
healthCheckPath: /health
envVars:
- key: DISCORD_TOKEN
sync: false
- key: OPENROUTER_API_KEY
sync: false
- key: LLM_ROUTE
value: openrouter
- key: OPENROUTER_MODEL
value: anthropic/claude-3.5-sonnet
- key: CACHE_BACKEND
value: redis
- key: REDIS_URL
fromService:
type: redis
name: summarybot-redis
property: connectionString
- key: WEBHOOK_ENABLED
value: true
- key: WEBHOOK_HOST
value: 0.0.0.0
- key: WEBHOOK_PORT
value: 5000
- key: LOG_LEVEL
value: INFO
- key: DATABASE_URL
value: sqlite:///data/summarybot.db
disk:
name: summarybot-data
mountPath: /app/data
sizeGB: 1
# Redis Cache Service
- type: redis
name: summarybot-redis
region: oregon
plan: starter
maxmemoryPolicy: allkeys-lru
ipAllowList: []