RSS feed reader built with Go.
-
Install dependencies
go mod download
-
Set environment variables
export ENVIRONMENT=development export DB_ENGINE=sqlite3 export DB_URL=nyusu.db export PORT=8888
-
Run database migrations
goose -dir sql/schema sqlite3 nyusu.db up
-
Start the server
go run .
-
Open in browser
http://localhost:8888