ef5ddcfbb5
- config 改用 Viper 读取 YAML + 绑定环境变量 + godotenv 加载 .env - 新增 LLM / ImageGen / JWT / Database / Server 分组配置结构 - 新增 backend/.env.example 环境变量模板 - .gitignore 添加 backend/.env 和 backend/main
26 lines
371 B
Plaintext
26 lines
371 B
Plaintext
# Binaries for programs and plugins
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
|
*.out
|
|
|
|
# Dependency directories (remove the comment below to include it)
|
|
# vendor/
|
|
|
|
# Frontend
|
|
**/node_modules/
|
|
**/dist/
|
|
|
|
# Backend
|
|
backend/bin/
|
|
backend/data/
|
|
backend/.env
|
|
backend/main
|