- Replace Go (Kratos/Wire/Watermill) implementation with .NET 10 solution - Add FileSystem.slnx, Directory.Build.props and ABP module structure - Keep Docker/Jenkins/docker-compose deployment artifacts - This drops all Go sources (cmd/, internal/, api/proto) in favor of src/
19 lines
684 B
Plaintext
19 lines
684 B
Plaintext
# file-system service (.NET 10 + ABP + FastEndpoints)
|
||
#
|
||
# 运行配置默认读 src/FileSystem.Api/appsettings.json。
|
||
# 环境变量用 "__" 分隔配置节(如 S3__Endpoint 对应 S3:Endpoint)覆盖 appsettings。
|
||
|
||
# --- 对象存储(S3 / RustFS / MinIO) ---
|
||
S3__Endpoint=http://localhost:9100
|
||
S3__AccessKey=minioadmin
|
||
S3__SecretKey=minioadmin
|
||
S3__Region=us-east-1
|
||
|
||
# --- 数据库(PostgreSQL) ---
|
||
ConnectionStrings__Default=Host=localhost;Port=5432;Database=file_system;Username=rag;Password=rag123
|
||
|
||
# --- 鉴权(SSO OIDC / JWKS) ---
|
||
# 信 SSO 签发的 RS256 JWT,框架从 Authority 自动发现 JWKS
|
||
Jwt__Authority=http://localhost:5215
|
||
Jwt__RequireHttps=false
|