first commit

This commit is contained in:
Urtzi Alfaro
2025-07-17 13:54:51 +02:00
parent 347ff51bd7
commit 5bb3e93da4
41 changed files with 10084 additions and 94 deletions

View File

@@ -1,5 +1,4 @@
# docker-compose.yml - Development Environment
version: '3.8'
services:
# Message Broker
@@ -420,8 +419,8 @@ services:
# Dashboard Frontend
dashboard:
build:
context: ./frontend/dashboard
dockerfile: Dockerfile
context: ./frontend
dockerfile: Dockerfile.dev
container_name: bakery-dashboard
environment:
- REACT_APP_API_URL=http://localhost:8000
@@ -434,27 +433,10 @@ services:
networks:
- bakery-network
volumes:
- ./frontend/dashboard:/app
- ./frontend:/app
- /app/node_modules
# Marketing Site
marketing:
build:
context: ./frontend/marketing
dockerfile: Dockerfile
container_name: bakery-marketing
environment:
- NEXT_PUBLIC_API_URL=http://localhost:8000
- NEXT_PUBLIC_SITE_URL=http://localhost:3001
ports:
- "3001:3000"
depends_on:
- gateway
networks:
- bakery-network
volumes:
- ./frontend/marketing:/app
- /app/node_modules
# Monitoring - Prometheus
prometheus: