Spaces:
Sleeping
Sleeping
version: '3.8' | |
services: | |
web: | |
build: . | |
ports: | |
- "3000:3000" # React frontend | |
- "3001:3001" # Backend server | |
environment: | |
- NODE_ENV=production | |
- GEMINI_API_KEY=${GEMINI_API_KEY} | |
volumes: | |
- .:/usr/src/app | |
- /usr/src/app/node_modules |