echo server
This is an echo server written in rust using warp.
This can be used to simulate http responses.
To build or run, use cargo
cargo build
cargo run
A Makefile
is provided to build a container image
Check prerequisites to build the image
make check
To build the default container image
make image
To run the container image - use podman
podman run -d -p 8000:8000 <imageid>