enso/tools/simple-httpbin
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
..
src/main/java/org/enso/shttp Simple HTTPBin to replace Go equivalent (#3887) 2022-11-18 11:27:27 +00:00
README.md Simple HTTPBin to replace Go equivalent (#3887) 2022-11-18 11:27:27 +00:00

Simple HTTPBin

A simple HTTP Request/Response clone of httpbin 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