-
Notifications
You must be signed in to change notification settings - Fork 5
/
render.yaml
34 lines (33 loc) · 867 Bytes
/
render.yaml
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: gemi-bot
runtime: docker
region: singapore
plan: free
dockerfilePath: ./Dockerfile
dockerCommand: gunicorn main:web_app --bind 0.0.0.0:$PORT -k aiohttp.GunicornWebWorker
envVars:
- key: ENV
sync: false
- key: APP_HOSTNAME
sync: false
- key: BOT_TOKEN
sync: false
- key: WEBHOOK_SECRET
sync: false
- key: GOOGLE_API_KEY
sync: false
- key: MSG_HANDLING_CONCURRENCY
value: 10
- key: INACTIVITY_SLEEP_DELAY
value: 30
healthCheckPath: /ping
- type: web
name: gemi-voice
runtime: docker
region: singapore
plan: free
repo: https://github.com/Akash98Sky/gemi-voice.git
dockerfilePath: ./Dockerfile
dockerCommand: uvicorn main:app --host 0.0.0.0 --port $PORT
healthCheckPath: /ping