A calm, focused RSS reader for your home server. No ads. No algorithms. No cloud dependencies. Just you and the content you choose.
Subscribe to RSS, Atom, and JSON feeds from your favorite sites. Articles are displayed in a clean three-column layout with reader mode for distraction-free reading.
Find new feeds with curated recommendations and automatic feed detection. Just paste a website URL and CozyRSS will find its feed.
See recent articles and feed details before committing. One click to subscribe.
Reading stats, streaks, and milestones keep you motivated. See your most-read feeds and celebrate your progress.
- Organize feeds with folders and tags
- OPML import/export
- Dark mode and customizable themes
- Keyboard shortcuts
- Mobile-friendly responsive design
git clone https://github.com/dyascj/cozy-rss.git
cd cozy-rss
SESSION_SECRET=$(openssl rand -hex 32) docker compose up -dOpen http://localhost:3000 and create your account.
# docker-compose.yml
services:
cozyrss:
image: ghcr.io/dyascj/cozyrss:latest
ports:
- "3000:3000"
volumes:
- cozyrss-data:/app/data
environment:
- SESSION_SECRET=your-secret-here-use-openssl-rand-hex-32
restart: unless-stopped
volumes:
cozyrss-data:docker compose up -d| Variable | Required | Default | Description |
|---|---|---|---|
SESSION_SECRET |
Yes | -- | Secret for signing session cookies. Generate with openssl rand -hex 32 |
DATABASE_PATH |
No | /app/data/cozyrss.db |
Path to SQLite database file |
PORT |
No | 3000 |
Server port |
# Install dependencies
npm install
# Create environment file
cp .env.example .env
# Edit .env and set SESSION_SECRET
# Run development server
npm run devAll data is stored in a single SQLite database file. Back it up by copying the file:
# If using Docker volumes
docker cp $(docker compose ps -q cozyrss):/app/data/cozyrss.db ./backup.dbYou can import feeds from other RSS readers via OPML:
- Import: Settings > Import OPML
- Export: Settings > Export OPML
- Next.js -- Full-stack React framework
- Drizzle ORM -- Type-safe database access
- SQLite -- Embedded database
- Tailwind CSS -- Styling
- Zustand -- State management
MIT



