file-system/.env.example
向宁 df8f1e4cb7 refactor: rewrite file-system from Go to .NET 10 / ABP modular
- 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/
2026-06-14 15:02:59 +08:00

19 lines
684 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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