https://github.com/noofbiz/feedme
https://github.com/noofbiz/feedme
reader rss
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/noofbiz/feedme
- Owner: Noofbiz
- License: mit
- Created: 2018-09-08T22:30:24.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-04-04T15:14:14.000Z (about 7 years ago)
- Last Synced: 2025-04-06T10:36:53.258Z (about 1 year ago)
- Topics: reader, rss
- Language: Go
- Size: 207 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Feed Me!
Feed Me! is a cross platform, open source RSS / Atom feed reader! Right now it
should work on Windows, Linux, and OSX.
## Building
### SQLite
Requires [sqlite3](https://www.sqlite.org/index.html) to run.
To get it on OSX via brew run
```
brew install sqlite3
```
On Ubuntu run
```
sudo apt-get install build-essential
```
and on Windows make sure the precompiled sqlite binaries are somewhere your
gcc toolchain can see them. Not sure if this works with MSVC but if you can
get sqlite to run on MSVC this should work as well.
### Go
You'll have to install [go](https://golang.org) then run
```
go get github.com/Noofbiz/FeedMe
```
Then to run you can just do
```
go run main.go
```
or if you want a compiled binary
```
go build main.go -o=FeedMe
./FeedMe
```