feat: backend core - auth, user, role, permission, device, webhook, monitoring, cache, repository, service, middleware, API handlers

This commit is contained in:
2026-04-02 11:19:50 +08:00
parent e59a77bc49
commit dcc1f186f8
298 changed files with 62603 additions and 0 deletions

26
docker-compose.yml Normal file
View File

@@ -0,0 +1,26 @@
version: '3.8'
services:
# 用户管理服务
user-management:
build: .
container_name: user-ms-app
ports:
- "8080:8080"
environment:
- DB_HOST=postgres
- DB_PORT=5432
- DB_USER=user_ms
- DB_PASSWORD=user_ms_pass
- DB_NAME=user_ms
depends_on:
- postgres
networks:
- user-ms-network
volumes:
postgres-data:
networks:
user-ms-network:
driver: bridge