Spaces:
Paused
Paused
File size: 474 Bytes
29e0d63 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# render.yaml
services:
- type: web
name: telegram-bot
runtime: python
plan: free
branch: main
buildCommand: pip install -r requirements.txt
startCommand: uvicorn app:app --host 0.0.0.0 --port 10000
envVars:
- key: BOT_TOKEN
sync: false
- key: BASE_URL
sync: false
- key: HF_TOKEN
sync: false
- key: BOT_SECRET_PASSWORD
sync: false
- key: FILE_RFP_EXCEL_COUNT
value: "200"
|