There is a publicly available API for the webcomic XKCD – https://xkcd.com/json.html
And an RSS feed for PDL: http://feeds.feedburner.com/PoorlyDrawnLines
Create a RESTful service that pulls last 10 strips from each and combines them in a single json feed (20 recent entries in total). The response should contain the following data for each entry:
Sort the resulting feed by publishing date from recent to older.
The solution should contain a docker-compose configuration to build and run it at http://localhost:8080
We have the following expectations towards your solution.
The solution sources should be hosted on github. Preferably the commit history should represent your iterative process.