├── .env.dev ├── .gitignore ├── .nvmrc ├── Dockerfile ├── LICENSE ├── README.md ├── app.py ├── docker-compose.yml ├── requirements.txt ├── static ├── custom.css ├── diffbot-logomark.svg ├── main.css ├── og-image.webp ├── rss-anything-example.webp └── rss-anything-icon.svg ├── tailwind.config.js └── templates └── home.html /.env.dev: -------------------------------------------------------------------------------- 1 | DIFFBOT_TOKEN= -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffbot/rss-anything/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.3.0 -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffbot/rss-anything/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffbot/rss-anything/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffbot/rss-anything/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffbot/rss-anything/HEAD/app.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffbot/rss-anything/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffbot/rss-anything/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffbot/rss-anything/HEAD/static/custom.css -------------------------------------------------------------------------------- /static/diffbot-logomark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffbot/rss-anything/HEAD/static/diffbot-logomark.svg -------------------------------------------------------------------------------- /static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffbot/rss-anything/HEAD/static/main.css -------------------------------------------------------------------------------- /static/og-image.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffbot/rss-anything/HEAD/static/og-image.webp -------------------------------------------------------------------------------- /static/rss-anything-example.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffbot/rss-anything/HEAD/static/rss-anything-example.webp -------------------------------------------------------------------------------- /static/rss-anything-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffbot/rss-anything/HEAD/static/rss-anything-icon.svg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffbot/rss-anything/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diffbot/rss-anything/HEAD/templates/home.html --------------------------------------------------------------------------------