File size: 289 Bytes
7f2a14a
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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