23 lines
354 B
Markdown
23 lines
354 B
Markdown
# Go RSS aggregator
|
|
|
|
From: https://www.youtube.com/watch?v=un6ZyFkqFKo&t=24193s
|
|
|
|
Example API requests are located in `http-requests`
|
|
|
|
Running the server
|
|
```shell
|
|
go build && ./go-rss-aggregator
|
|
```
|
|
|
|
## Regenerate sql query bindings
|
|
```shell
|
|
sqlc generate
|
|
```
|
|
|
|
## Apply goose migrations
|
|
```shell
|
|
cd sql/schema
|
|
goose sqlite ../../db.sqlite up
|
|
cd ../..
|
|
```
|