An RSS reader webapp
.sqlx | ||
migrations | ||
src | ||
static | ||
templates | ||
.gitignore | ||
Cargo.lock | ||
Cargo.toml | ||
flake.lock | ||
flake.nix | ||
README.md | ||
Rocket.toml |
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:
-
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
-
Install the package:
nix profile install github:yourusername/rss-reader
Or run it directly:
nix run github:yourusername/rss-reader -- -d /path/to/database.sqlite
Development
To set up a development environment:
-
Clone the repository:
git clone https://github.com/yourusername/rss-reader.git cd rss-reader
-
Enter the development shell:
nix develop
-
Run the application:
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.