is open source feed reader with customizable plugin system for any content (atom, rss, youtube channels...).
read wiki
- install java
- download release zip file
- add configuration file:
// Sample config (with sqlite backend)
truerss {
port = 8000
host = localhost
wsPort = 8080
update-parallelism = 10
db {
backend = sqlite
port = ""
host = ""
dbname = "/path/to/dbName.db"
username = ""
password = ""
}
plugins = {}
}
- unzip
- run with
bin/truerss - open in browser localhost:8000/
- enjoy!
- install java
- install docker (need for run tests with different dbs: postgresql, and mysql)
- scala, and sbt
- for ui part install coffeescript (run
sbt install<- will install all js/css deps)
sbt test - unit tests
sbt 'Real / test' - integration tests
Compile app with rake or with sbt jsbuild command
- clone repo
- run sbt
- for work with UI need install web-dependencies (with
sbt install) and coffeescript - for backend part just open in your IDE and add feature, fix bugs
- create pull request