It is a RSS feed aggregator in Go! It's a web server that allows clients to:
- Add RSS feeds to be collection
- Follow and unfollow RSS feeds that other users have added
- Fetch all of the latest posts from the RSS feeds they follow
Credits: Boot.Dev
go version go1.21.3
git clone https://github.com/tusharbecoding/rss-aggregator.git
PORT=8080
DB_URL=
Migrate DB: Run following command inside sql/schema
directory
goose postgres <YOUR_DB_URL> up
Generate Queries
sqlc generate
go build && ./rssagg