AgileConfig icon indicating copy to clipboard operation
AgileConfig copied to clipboard

基于.NET Core开发的轻量级分布式配置中心 / .NET Core lightweight configuration server

Results 60 AgileConfig issues
Sort by recently updated
recently updated
newest added

``` 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...

加入 应用ID | 环境 | IP | 客户端名称 这四个字段 的过滤和排序功能, 方便检查客户端连接的有效性。

enhancement

发布版缺少 AgileConfig.Server.Apisite.exe 文件,在 windows 部署时,如果使用命令行将无法启动 ``` shell > AgileConfig.Server.Apisite.exe --urls "http://*:8085" ```

环境: ubuntu22 +docker 日志图 操作后没报错 ![image](https://github.com/user-attachments/assets/528a70fa-6b93-4c61-b696-8640753ef60f) 错误: 这是在操作/ 应用/配置项后出现,是我哪里搞错了吗? ![image](https://github.com/user-attachments/assets/f3b8303a-d55e-454a-89ec-357468c11582) ![image](https://github.com/user-attachments/assets/972c2e60-6780-454f-a212-91035e090489) ![image](https://github.com/user-attachments/assets/fd8e3ead-5e19-4298-a2ad-6c86c28b6fe6) 但是 请求返回值好像ok ![image](https://github.com/user-attachments/assets/79ba9961-bc80-4644-9407-aae65da26923) ![image](https://github.com/user-attachments/assets/d9d696ad-a9c6-4899-a434-508b63baae17) ![image](https://github.com/user-attachments/assets/f4ce83c2-2188-4c6e-b2c5-d309d7221d94)

1. 能够配合Aspire启动,读取 Resources 服务名 2. 支持修改服务的环境变量

enhancement

你好,我想通过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:...