This repo is made for the purpose of learning Go
This is a backend app for learning to build REST API in Go. This app will collect RSS feeds every so often and save it for the users to see.
- Go
- PostgreSQL
- SQLC
go mod vendor
First, copy the contents in .env.example and paste it in your own .env
file, change it to suite your database setup
Next, run the migrations using goose by using the command below
goose postgres [YOUR_CONNECTION_STRING] up
Now you can run the app and try it for yourself!
go build && ./go-rss-feed
- Unit testing will be added soon!