A minimalist RSS feed reader with a clean interface and dark mode support.

- Add and manage RSS feeds
- Clean, responsive interface
- Dark/Light theme toggle
- Auto-refresh feeds
- Mobile-friendly design
- Clone the repository:
git clone https://github.com/yourusername/deeL.git
cd deeL- Install dependencies and build:
go mod tidy
make build- Run the application:
make runThe application will be available at http://localhost:8080 by default.
├── cmd
│ └── server # Entry point for the application
├── internal
│ ├── database # Database operations
│ ├── feeds # Feed processing and management
│ ├── handlers # HTTP handlers
│ ├── models # Data structures
│ └── utils # Utility functions
├── static # Static assets (CSS, JS, images)
└── templates # HTML templates
- Click "Add a new RSS feed" to add RSS feed URLs
- Use the theme toggle in the top right to switch between light and dark modes
- Click "Refresh All Feeds" to update your feed content
- Click the hamburger menu on mobile to show/hide the sidebar
MIT License