first commit

This commit is contained in:
2026-01-17 15:27:46 -05:00
commit 713f205255
6 changed files with 127 additions and 0 deletions

39
docker-compose.dev.yml Executable file
View File

@@ -0,0 +1,39 @@
name: customer_gateway
services:
api_dev:
restart: always
tty: true
stdin_open: true
build:
context: ../api
dockerfile: Dockerfile.dev
volumes:
- ../api:/app
- images:/images
ports:
- '8000:8000'
env_file:
- ../api/.env.dev
environment:
- MODE=DEVELOPMENT
command: 'uvicorn main:app --reload --host 0.0.0.0 --port 8000'
frontend_dev:
restart: on-failure
tty: true
stdin_open: true
build:
context: ../frontend
dockerfile: Dockerfile.dev
volumes:
- ../frontend:/app
ports:
- '5173:5173'
command: 'vite dev --host --port 5173'
volumes:
images: