Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codekeyz/pizza_dart_app
Simple dart backend with Shelf
https://github.com/codekeyz/pizza_dart_app
Last synced: 6 days ago
JSON representation
Simple dart backend with Shelf
- Host: GitHub
- URL: https://github.com/codekeyz/pizza_dart_app
- Owner: codekeyz
- Created: 2024-01-18T07:20:15.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-07-15T10:53:49.000Z (4 months ago)
- Last Synced: 2024-07-16T11:37:39.250Z (4 months ago)
- Language: Dart
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
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 http://0.0.0.0:8080
Hello, World!
$ curl http://0.0.0.0:8080/echo/I_love_Dart
I_love_Dart
```You should see the logging printed in the first terminal:
```
2021-05-06T15:47:04.620417 0:00:00.000158 GET [200] /
2021-05-06T15:47:08.392928 0:00:00.001216 GET [200] /echo/I_love_Dart
```