Spaces:
Running
Running
File size: 680 Bytes
f2ee01f ce6b22b f2ee01f 85885ab f2ee01f 85885ab f2ee01f ce6b22b f2ee01f ce6b22b f2ee01f | 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 | services:
- type: web
name: valor-sentimental-backend
runtime: python
plan: free
buildCommand: pip install -r requirements.txt
startCommand: cd backend && python main.py
envVars:
- key: FLASK_ENV
value: production
- key: HF_TOKEN
sync: false
- key: GROQ_TOKEN
sync: false
- key: OMDB_API_KEY
sync: false
- type: web
name: valor-sentimental-frontend
runtime: node
plan: free
buildCommand: cd chatbot && npm install && npm run build
startCommand: cd chatbot && npm start
envVars:
- key: VITE_API_BASE_URL
value: https://valor-sentimental-backend.onrender.com
|