Apq.Cfg 配置管理 Web 界面,集中管理多个应用的配置。
docker run -d -p 8080:80 amwpfiqvy/apqcfg-webui:latest
# 访问 http://localhost:8080
npm install && npm run dev
# 访问 http://localhost:38690
npm run build
# 输出到 dist/,可部署到 Nginx/Vercel/OSS 等
远程应用需启用 CORS 并暴露配置 API:
builder.Services.AddApqCfgWebApi(cfg, options =>
{
options.EnableCors = true;
options.CorsOrigins = ["*"]; // 或指定 WebUI 域名
});
MIT License