1
0
forked from baron/baron-sso

feat: integrate orgfront and expose internal ids

This commit is contained in:
2026-04-30 09:33:39 +09:00
parent 02375af08d
commit 9ce7a67f58
116 changed files with 22992 additions and 33 deletions

View File

@@ -125,6 +125,20 @@ services:
command: npm run dev -- --host 0.0.0.0
networks: [app_net]
orgfront:
image: node:20-alpine
container_name: ${COMPOSE_PROJECT_NAME}_orgfront
working_dir: /app
env_file: .env
ports:
- "${ORGFRONT_PORT}:5175"
volumes:
- ../../orgfront:/app
- ./orgfront/vite.config.ts:/app/vite.config.ts:ro
- ./orgfront/auth.ts:/app/src/lib/auth.ts:ro
command: npm run dev -- --host 0.0.0.0 --port 5175
networks: [app_net]
networks:
app_net:
name: ${COMPOSE_PROJECT_NAME}_net