this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

:memo: added readme

+30
+30
README.org
··· 1 + * Payment Gateway 2 + 3 + 4 + ** Getting started 5 + 6 + *** Prerequisites 7 + 8 + - [[https://hurl.dev][hurl]] :: CLI tool that runs http requests, similar to curl 9 + - [[https://docs.docker.com/desktop/][docker :: ]] Using docker to run project and mocks 10 + - [[https://jqlang.org/][jq]] :: (Optional) CLI tool to query JSON data 11 + 12 + *** Usage 13 + 14 + Run the project with both providers mocked: 15 + 16 + #+begin_src shell 17 + docker compose up 18 + #+end_src 19 + 20 + In other terminal, make the request with hurl 21 + 22 + #+begin_src shell 23 + hurl request.hurl 24 + #+end_src 25 + 26 + In case you want to see the response with json format, you can use jq 27 + 28 + #+begin_src shell 29 + hurl request.hurl | jq . 30 + #+end_src