https://github.com/bozzelliandrea/whychat-server
Backend layer that exposes some APIs used by WhyChat App
https://github.com/bozzelliandrea/whychat-server
api-rest backend backend-api dart dartlanguage flutter jwt jwt-authentication
Last synced: 6 days ago
JSON representation
Backend layer that exposes some APIs used by WhyChat App
- Host: GitHub
- URL: https://github.com/bozzelliandrea/whychat-server
- Owner: bozzelliandrea
- Created: 2022-01-02T20:32:44.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-06-06T09:09:29.000Z (over 2 years ago)
- Last Synced: 2025-05-19T06:07:41.196Z (5 months ago)
- Topics: api-rest, backend, backend-api, dart, dartlanguage, flutter, jwt, jwt-authentication
- Language: Dart
- Homepage:
- Size: 50.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
A server app built using [Shelf](https://pub.dev/packages/shelf),
configured to enable running with [Docker](https://www.docker.com/).This sample code handles HTTP GET requests to `/` and `/echo/`
# Running the sample
## Running with the Dart SDK
You can run the example with the [Dart SDK](https://dart.dev/get-dart)
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](https://www.docker.com/get-started) 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:
```
[200] /auth/registerr
```