Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 942 Bytes

README.md

File metadata and controls

39 lines (28 loc) · 942 Bytes

A server app built using Shelf, configured to enable running with Docker. This app fetches the Issues of a Revue Newsletter.

Running the code

Running with the Dart SDK

You can run the example with the Dart SDK like this:

$ dart run bin/server.dart
Server listening on port 8080

Running with Docker

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

Endpoint details

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.