 42091492d5
			
		
	
	42091492d5
	
	
	
		
			
			Updated frontend to use BACKEND_API_URL environment variable at compile time with fallback to localhost. Added configuration to Trunk.toml and .env.example for development. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			17 lines
		
	
	
		
			510 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			510 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # CalDAV Server Configuration
 | |
| CALDAV_SERVER_URL=https://your-caldav-server.com/dav/
 | |
| CALDAV_USERNAME=your-username
 | |
| CALDAV_PASSWORD=your-password
 | |
| 
 | |
| # Optional: Calendar collection path (if different from default)
 | |
| CALDAV_CALENDAR_PATH=/calendars/your-username/personal/
 | |
| 
 | |
| # Optional: Task/Todo collection path
 | |
| CALDAV_TASKS_PATH=/calendars/your-username/tasks/
 | |
| 
 | |
| # Backend API Configuration
 | |
| # Set this to point to your backend API server
 | |
| BACKEND_API_URL=http://localhost:3000/api
 | |
| 
 | |
| # Development settings
 | |
| RUST_LOG=info |