enso/tools/simple-httpbin/README.md
Hubert Plociniczak 2a38edecd4
Simple HTTPBin to replace Go equivalent (#3887)
1-to-1 translation of the HTTPBin expected by our testsuite using Java's HttpServer.
Can be started from SBT via
```
sbt:enso> simple-httpbin/run <hostname> <port>
```

# Important Notes
@mwu-tow this will mean we can ditch Go dependency completely and replace it with the above call.
2022-11-18 11:27:27 +00:00

19 lines
350 B
Markdown

# Simple HTTPBin
A simple HTTP Request/Response clone of [httpbin](http://httpbin.org) for
testing purposes.
## Usage
Simple HTTPBin can be compiled like any other SBT project i.e.
```
sbt> simple-httpbin/compile
```
To run, simply invoke the `main` method with the appropriate hostname and port:
```
sbt> simple-httpbin/run localhost 8080
```