├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── lib └── utils.js ├── opml ├── dashboard.opml ├── queue.opml ├── river4.opml ├── river4homepage.opml ├── riverbuilder.opml ├── s3.opml └── utils.opml ├── package.json └── river4.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scripting/river4/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:0.12-onbuild 2 | EXPOSE 1337 3 | ENV fspath /var/river4/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scripting/river4/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scripting/river4/HEAD/README.md -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scripting/river4/HEAD/lib/utils.js -------------------------------------------------------------------------------- /opml/dashboard.opml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scripting/river4/HEAD/opml/dashboard.opml -------------------------------------------------------------------------------- /opml/queue.opml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scripting/river4/HEAD/opml/queue.opml -------------------------------------------------------------------------------- /opml/river4.opml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scripting/river4/HEAD/opml/river4.opml -------------------------------------------------------------------------------- /opml/river4homepage.opml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scripting/river4/HEAD/opml/river4homepage.opml -------------------------------------------------------------------------------- /opml/riverbuilder.opml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scripting/river4/HEAD/opml/riverbuilder.opml -------------------------------------------------------------------------------- /opml/s3.opml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scripting/river4/HEAD/opml/s3.opml -------------------------------------------------------------------------------- /opml/utils.opml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scripting/river4/HEAD/opml/utils.opml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scripting/river4/HEAD/package.json -------------------------------------------------------------------------------- /river4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scripting/river4/HEAD/river4.js --------------------------------------------------------------------------------