Blogdor the Aggregator
Find a file
2026-01-06 18:22:07 -08:00
migrations fix the active feeds query to not needs runs to have a row 2026-01-02 13:24:14 -08:00
sample-data refactor done 2026-01-02 17:16:24 -08:00
src minor formatting tweak when posting to zulip 2026-01-06 18:22:07 -08:00
.gitignore more stuff 2025-12-31 11:58:06 -08:00
.rustfmt.toml checkpoint 2025-12-12 18:30:03 -08:00
blogdor.service update env and service files 2025-12-25 10:35:30 -08:00
build.rs initial skeleton: listens for POSTS to add feeds, checks for new feed content every hour. 2025-12-07 16:12:20 -08:00
Cargo.lock refactor done 2026-01-02 17:16:24 -08:00
Cargo.toml refactor done 2026-01-02 17:16:24 -08:00
README.md initial skeleton: listens for POSTS to add feeds, checks for new feed content every hour. 2025-12-07 16:12:20 -08:00
sample-dot-env update env and service files 2025-12-25 10:35:30 -08:00

Dev Setup

This project uses statically-verified queries, which require the presence of a database with the right schema.

  • Install the SQLx CLI: cargo install sqlx-cli
  • Create the DB: sqlx db create -- this will create a sqlite DB in the current directory called blogdor.db
  • Run the migrations: sqlx migrate run
  • Live happily ever after.