1
0
forked from baron/baron-sso

refactor(adminfront): remove internal org-chart and delegate to orgfront

- Remove TenantOrgChartPage and related internal routes
- Update AppLayout to render external links for org-chart navigation
- Add orgfront service configuration to docker-compose.yaml
This commit is contained in:
2026-04-15 17:44:54 +09:00
parent 726ac71214
commit a49aa2d31f
4 changed files with 44 additions and 442 deletions

View File

@@ -86,6 +86,26 @@ services:
networks:
- baron_net
orgfront:
build:
context: ../baron-orgchart
dockerfile: Dockerfile
container_name: baron_orgfront
env_file:
- .env
environment:
- APP_ENV=${APP_ENV:-development}
- API_PROXY_TARGET=http://baron_backend:3000
- USERFRONT_URL=${USERFRONT_URL}
ports:
- "${ORGFRONT_PORT:-5175}:5175"
volumes:
- ../baron-orgchart:/app
- ./locales:/locales
- /app/node_modules
networks:
- baron_net
userfront:
build: