···11+* Payment Gateway
22+33+44+** Getting started
55+66+*** Prerequisites
77+88+- [[https://hurl.dev][hurl]] :: CLI tool that runs http requests, similar to curl
99+- [[https://docs.docker.com/desktop/][docker :: ]] Using docker to run project and mocks
1010+- [[https://jqlang.org/][jq]] :: (Optional) CLI tool to query JSON data
1111+1212+*** Usage
1313+1414+Run the project with both providers mocked:
1515+1616+#+begin_src shell
1717+docker compose up
1818+#+end_src
1919+2020+In other terminal, make the request with hurl
2121+2222+#+begin_src shell
2323+hurl request.hurl
2424+#+end_src
2525+2626+In case you want to see the response with json format, you can use jq
2727+2828+#+begin_src shell
2929+hurl request.hurl | jq .
3030+#+end_src