Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 656 Bytes

File metadata and controls

29 lines (19 loc) · 656 Bytes

rssaggr

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

run locally

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

migration

cd ./sql/schema

goose postgres postgresql://postgres:password@localhost:5432/rssaggr up
goose postgres postgresql://postgres:password@localhost:5432/rssaggr down