Spaces:
Running
Running
| 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 | |