A server app built using Shelf, configured to enable running with Docker. This app fetches the Issues of a Revue Newsletter.
You can run the example with the Dart SDK like this:
$ dart run bin/server.dart Server listening on port 8080
If you have Docker Desktop installed, you can build and run with the docker
command:
$ docker build . -t myserver $ docker run -it -p 8080:8080 myserver Server listening on port 8080
After running the Dart app using the steps mentioned above, open the url : http://localhost:8080/newsletter
Request Method : POST
Request body :
{ "profile":"The-Flutter-Bi-Weekly" }
Note: Change the newsletter name accordingly to get its issue.