Spaces:
Sleeping
Sleeping
| version: '3.8' | |
| services: | |
| backend: | |
| build: | |
| context: ./backend | |
| dockerfile: Dockerfile | |
| ports: | |
| - "8000:8000" | |
| environment: | |
| - GEMINI_API_KEY=${GEMINI_API_KEY} | |
| - CORS_ORIGINS=http://localhost:5173,http://localhost | |
| volumes: | |
| - ./backend:/app | |
| frontend: | |
| build: | |
| context: ./frontend | |
| dockerfile: Dockerfile | |
| ports: | |
| - "5173:80" | |
| depends_on: | |
| - backend | |