A very simple HTTP server to provide RSS feed for user galleries on DeviantArt.
Advantages compared to the official RSS API of DeviantArt:
- Better title and icon.
- Use large image for thumbnail.
- Filter blurred images (images behind paywall).
On bare metal:
bundle install
RACK_ENV=production PORT=80 bundle exec ./main.rbWith Docker Compose:
services:
app:
image: ulysseszhan/deviantartrss
container_name: deviantartrss
restart: unless-stopped
environment:
RACK_ENV: production
ports:
- '80:4567'Change 80 to the port on which you want it to be hosted.
Suppose you hosted it on deviantartrss.example.com, and then you can simply access
http://deviantartrss.example.com/spyed.
MIT.