Spaces:
Running
Running
File size: 501 Bytes
964dddf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 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
|