2025-02-03 01:19:00 -08:00
|
|
|
# RSS Reader
|
|
|
|
|
|
|
|
A modern web-based RSS feed reader built with Rust and Rocket. Features a clean, dark-themed interface that allows you to:
|
|
|
|
|
|
|
|
- Add and manage RSS/Atom feeds
|
|
|
|
- View feed entries with titles, summaries, and timestamps
|
|
|
|
- Poll feeds for updates
|
|
|
|
- Organize feeds with categories
|
|
|
|
- Multi-user support with admin capabilities
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
### Using Nix
|
|
|
|
|
|
|
|
This project is packaged with Nix flakes. To install and run it:
|
|
|
|
|
|
|
|
1. Make sure you have Nix installed with flakes enabled. Add this to your `/etc/nix/nix.conf` if you haven't already:
|
|
|
|
```
|
|
|
|
experimental-features = nix-command flakes
|
|
|
|
```
|
|
|
|
|
|
|
|
2. Install the package:
|
|
|
|
```bash
|
2025-02-03 01:21:42 -08:00
|
|
|
nix profile install git+https://code.everydayimshuflin.com/greg/rss-reader
|
2025-02-03 01:19:00 -08:00
|
|
|
```
|
|
|
|
|
|
|
|
Or run it directly:
|
|
|
|
```bash
|
2025-02-03 01:21:42 -08:00
|
|
|
nix run git+https://code.everydayimshuflin.com/greg/rss-reader -- -d /path/to/database.sqlite
|
2025-02-03 01:19:00 -08:00
|
|
|
```
|
|
|
|
|
|
|
|
### Development
|
|
|
|
|
|
|
|
To set up a development environment:
|
|
|
|
|
|
|
|
1. Clone the repository:
|
|
|
|
```bash
|
2025-02-03 01:21:42 -08:00
|
|
|
git clone https://code.everydayimshuflin.com/greg/rss-reader.git
|
2025-02-03 01:19:00 -08:00
|
|
|
cd rss-reader
|
|
|
|
```
|
|
|
|
|
|
|
|
2. Enter the development shell:
|
|
|
|
```bash
|
|
|
|
nix develop
|
|
|
|
```
|
|
|
|
|
|
|
|
3. Run the application:
|
|
|
|
```bash
|
|
|
|
cargo run -- -d rss-reader.db
|
|
|
|
```
|
|
|
|
|
|
|
|
The application will be available at `http://localhost:8000`. On first run, you'll be prompted to create an admin user.
|