Merge branch 'FlexiDB'

This commit is contained in:
2025-07-24 07:39:43 +02:00
parent 1ef16940e6
commit 20659fa5f6
3647 changed files with 15892 additions and 1376968 deletions
+40
View File
@@ -0,0 +1,40 @@
version: "3.8"
services:
backend-dev:
build:
context: ../backend
dockerfile: ../docker/Dockerfile.backend.dev
container_name: bamort-backend-dev
ports:
- "8180:8180"
volumes:
- ../backend:/app
- go-mod-cache:/go/pkg/mod
environment:
- GO_ENV=development
- CGO_ENABLED=0
#- CGO_ENABLED=1
working_dir: /app
# Restart if Go code changes cause crash
restart: unless-stopped
frontend-dev:
build:
context: ../frontend
dockerfile: ../docker/Dockerfile.frontend.dev
container_name: bamort-frontend-dev
ports:
- "5173:5173" # Vite dev server port
volumes:
- ../frontend:/app
- /app/node_modules # Prevent overwriting node_modules
environment:
- NODE_ENV=development
- VITE_API_URL=http://localhost:8080
depends_on:
- backend-dev
restart: unless-stopped
volumes:
go-mod-cache: