AgileConfig
AgileConfig copied to clipboard
基于.NET Core开发的轻量级分布式配置中心 / .NET Core lightweight configuration server
``` docker logs -f --tail 100 agileConfigAdmin current dir path: /app/ default db provider: mysql warn: Microsoft.AspNetCore.DataProtection.Repositories.FileSystemXmlRepository[60] Storing keys in a directory '/root/.aspnet/DataProtection-Keys' that may not be persisted outside of...
发布版缺少 AgileConfig.Server.Apisite.exe 文件,在 windows 部署时,如果使用命令行将无法启动 ``` shell > AgileConfig.Server.Apisite.exe --urls "http://*:8085" ```
环境: ubuntu22 +docker 日志图 操作后没报错  错误: 这是在操作/ 应用/配置项后出现,是我哪里搞错了吗?    但是 请求返回值好像ok   
你好,我想通过api获取`指定key`的`值`,咱们支持吗? 像下面这样: ``` GET http://127.0.0.1:5000/api/应用/组/key Authorization: token 响应体: value ```
1:现在是前后端分离了?需要两个docker image? 2:代码的最新Dockerfile 需要更新把? 我执行了报错,我改了然后可以正常的打包 但是 卡在initpassword 3:我本地运行测试,发现 "SecurityKey": "", // 密钥 可以直接在这里配置 jwt 的密钥,或者通过环境变量 JwtSetting:SecurityKey 配置,如果不配置,则系统在启动的时候自动生成一个 key,存在数据库里,如 dfasf343453fsdfa 不行啊 还是需要我手动在配置文件配置。是不是需要有初始化? 4:本地测试运行 AgileConfig.Server.Apisite project 发现只有后端把? 项目文件夹看不到UI。在资源管理器发现有UI的目录。 所以作者 现在最新的 docker dockerfile?
如何支持多租户
我有多个项目,每个项目都有多个租户。
Hi, I set up the Agile Config using following docker compose: ``` version: '3.1' services: db: image: mariadb restart: always environment: - MARIADB_ROOT_PASSWORD=${DB_PASS} volumes: - /opt/data:/var/lib/mysql:Z - ./setup.sql:/docker-entrypoint-initdb.d/setup.sql adminer: image:...