-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
34 lines (34 loc) · 1.06 KB
/
render.yaml
File metadata and controls
34 lines (34 loc) · 1.06 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
services:
- type: web
name: utils-bot-plus
env: python
plan: free
buildCommand: pip install -r requirements.txt
startCommand: python main_hosted.py
envVars:
- key: BOT_TOKEN
sync: false # Set this in Render dashboard
- key: DEV_IDS
sync: false # Set this in Render dashboard
- key: GEMINI_API_KEY
sync: false # Set this in Render dashboard
- key: SECRET_KEY
generateValue: true # Auto-generate
- key: AUTO_SYNC_COMMANDS
value: "true"
- key: DEBUG
value: "false"
- key: LOG_LEVEL
value: "INFO"
- key: ENABLE_DOCKER_SANDBOX
value: "false" # Disabled for hosted services
- key: ENABLE_EVAL_COMMAND
value: "false" # Disabled for security in hosted environment
- key: ENABLE_RUN_COMMAND
value: "false" # Disabled for security in hosted environment
- key: DATABASE_URL
value: "sqlite+aiosqlite:///data/bot.db"
disk:
name: utils-bot-data
mountPath: /opt/render/project/src/data
sizeGB: 1