Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 545 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 545 Bytes

RSS Aggregator

Simple web server built with Go and PostgreSQL, that constantly checks to see new posts through RSS Feed and fetch them to the database, with concurrency.

This project was based in FreeCodeCamp tutorial on Golang.

Functionality

The code creates a CRUD API where you can:

  • Create a new User;
  • Fetch users;
  • Create new Feeds;
  • Fetch feeds;
  • Follow, as a user, a feed;
  • Fetch the feeds you follow;
  • Stop following a feed;
  • Automatically, store new posts of that feeds in database.