feat(admin): 添加用户管理相关文件
添加用户管理视图、API和状态管理文件
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
# 测试环境配置文件
|
||||
|
||||
NODE_ENV=test
|
||||
TEST_ENV=ci
|
||||
|
||||
# 测试环境URL
|
||||
API_BASE_URL=http://localhost:8083
|
||||
FRONTEND_BASE_URL=http://localhost:5174
|
||||
|
||||
# 数据库配置(复用postgresql_dev容器)
|
||||
DB_HOST=localhost
|
||||
DB_PORT=55432
|
||||
DB_NAME=everything_suitable_test
|
||||
DB_USERNAME=postgres
|
||||
DB_PASSWORD=postgres
|
||||
|
||||
# 企业微信配置
|
||||
WECOM_WEBHOOK_URL=https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=YOUR_KEY
|
||||
WECOM_TABLE_ID=YOUR_TABLE_ID
|
||||
WECOM_BOT_WEBHOOK=https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=YOUR_BOT_KEY
|
||||
|
||||
# Redis配置
|
||||
TEST_REDIS_PORT=6380
|
||||
|
||||
# 监控配置
|
||||
TEST_PROMETHEUS_PORT=9091
|
||||
TEST_GRAFANA_PORT=3001
|
||||
|
||||
# Grafana配置
|
||||
GRAFANA_ADMIN_USER=admin
|
||||
GRAFANA_ADMIN_PASSWORD=admin
|
||||
|
||||
# 测试数据配置
|
||||
TEST_DATA_DIR=./test-data
|
||||
TEST_DATA_SCRIPTS_DIR=./test-data/scripts
|
||||
|
||||
# 时区
|
||||
TZ=Asia/Shanghai
|
||||
|
||||
# 日志配置
|
||||
LOG_LEVEL=DEBUG
|
||||
LOG_FORMAT=JSON
|
||||
|
||||
# 测试超时配置
|
||||
TEST_TIMEOUT=30000
|
||||
TEST_RETRY_COUNT=3
|
||||
|
||||
# 测试环境标识
|
||||
ENVIRONMENT=test
|
||||
Reference in New Issue
Block a user