rssaggr is simple RSS feed aggrefation API where users can create/post their RSS feeds and follow the feeds. The API aggregate/fetches the RSS feed posts in the background.
NOTE: project is under development, all features might not work properly
NOTE: run the migration script for setting up database
cp .env.example .env
# build: creates server binary "/bin/server"
make build
# start server
go run ./cmd/server/*.go
cd ./sql/schema
goose postgres postgresql://postgres:password@localhost:5432/rssaggr up
goose postgres postgresql://postgres:password@localhost:5432/rssaggr down