Spaces:
Running
Running
File size: 330 Bytes
6064a78 | 1 2 3 4 5 6 7 8 9 10 11 | services:
- type: web
name: credify
env: python
buildCommand: |
apt-get update && apt-get install -y ffmpeg
chmod +x $(which ffmpeg)
ffmpeg -version
pip install --upgrade pip
pip install --use-pep517 -r requirements.txt
startCommand: uvicorn app.main:app --host 0.0.0.0 --port $PORT |