This project fetches and stores RSS feed items into a SQLite database using Rust and the reqwest
and tokio
crates.
- Rust and Cargo: Install from rustup.rs
- SQLite: Install SQLite CLI tool or DB Browser for SQLite
Create a .env
file in the root directory of the project from env.template
cp .env.template .env
cargo build
cargo run
./
├── src/
│ └── main.rs
├── .dockerignore
├── .env
├── .env.template
├── .gitignore
├── Cargo.lock
├── Cargo.toml
├── Dockerfile
├── Dockerfile.fly
├── data.sqlite
└── fly.toml