is open source feed reader with customizable plugin system for any content (atom, rss, youtube channels...).
- install java
- download truerss-${version}.jar
- add config
// 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 = {}
}
- run with
java -jar -Xmx150m path/to/truerss-${version}.jar &
- open in browser localhost:8000/
- enjoy!
- install java
- scala, and sbt
- for ui part install coffeescript
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