services: - type: web name: rag-pdf-assistant runtime: python buildCommand: pip install -r requirements.txt startCommand: gunicorn app:app --bind 0.0.0.0:$PORT --workers 2 envVars: - key: SECRET_KEY generateValue: true - key: ENCRYPTION_KEY sync: false - key: MONGO_URI sync: false - key: GOOGLE_CLIENT_ID sync: false - key: GOOGLE_CLIENT_SECRET sync: false - key: PYTHON_VERSION value: 3.10.12