40 lines
		
	
	
		
			955 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
		
		
			
		
	
	
			40 lines
		
	
	
		
			955 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
|  | # 🧪 测试环境配置
 | ||
|  | # 只包含与默认配置不同的配置项
 | ||
|  | 
 | ||
|  | # ===========================================
 | ||
|  | # 🌍 环境标识
 | ||
|  | # ===========================================
 | ||
|  | app:
 | ||
|  |     env: testing
 | ||
|  | 
 | ||
|  | # ===========================================
 | ||
|  | # 🌐 服务器配置
 | ||
|  | # ===========================================
 | ||
|  | server:
 | ||
|  |     mode: test
 | ||
|  | 
 | ||
|  | # ===========================================
 | ||
|  | # 🗄️ 数据库配置
 | ||
|  | # ===========================================
 | ||
|  | database:
 | ||
|  |     password: test_password
 | ||
|  |     name: tyapi_test
 | ||
|  | 
 | ||
|  | # ===========================================
 | ||
|  | # 📦 Redis配置
 | ||
|  | # ===========================================
 | ||
|  | redis:
 | ||
|  |     db: 15
 | ||
|  | 
 | ||
|  | # ===========================================
 | ||
|  | # 📝 日志配置
 | ||
|  | # ===========================================
 | ||
|  | logger:
 | ||
|  |     level: debug
 | ||
|  | 
 | ||
|  | # ===========================================
 | ||
|  | # 🔐 JWT配置
 | ||
|  | # ===========================================
 | ||
|  | jwt:
 | ||
|  |     secret: test-jwt-secret-key-for-testing-only
 |