File size: 343 Bytes
f6adfb0
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
services:
  - type: web
    name: tilawa-engine
    env: python
    buildCommand: |
      apt-get update -qq
      apt-get install -y -qq ffmpeg
      pip install -r requirements.txt
    startCommand: gunicorn app:app --bind 0.0.0.0:$PORT --timeout 300 --workers 1
    plan: free
    envVars:
      - key: PYTHON_VERSION
        value: 3.11.0