Skip to content

Backend layer that exposes some APIs used by WhyChat App

Notifications You must be signed in to change notification settings

bozzelliandrea/whychat-server

Repository files navigation

A server app built using Shelf, configured to enable running with Docker.

This sample code handles HTTP GET requests to / and /echo/<message>

Running the sample

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

And then from a second terminal:

$ curl http://0.0.0.0:8080
Hello, World!
$ curl http://0.0.0.0:8080/echo/I_love_Dart
I_love_Dart

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

And then from a second terminal:

curl -X POST http://localhost:8080/auth/register -H "Content-Type: application/json" -d '{"email":"email@email.com", "password":"pass"}'

You should see the logging printed in the first terminal:

<TIMESTAMP> [200] /auth/registerr