19 lines
459 B
Markdown
19 lines
459 B
Markdown
# Async Response Example
|
|
|
|
This is a basic 'hello world' example, that responds by asynchronously reading a
|
|
file off the filesystem. It simply returns 'hello world!' when making any
|
|
request, but the 'hello world!' text is fetched by reading the contents of the
|
|
file [Hello](./Hello).
|
|
|
|
To run the example server, run:
|
|
|
|
```bash
|
|
nix-shell --run 'example AsyncResponse'
|
|
```
|
|
|
|
Or, without nix:
|
|
|
|
```bash
|
|
spago -x test.dhall run --main Examples.AsyncResponse.Main
|
|
```
|