From 863244106333a25c733ae6c78a5eff857a178314 Mon Sep 17 00:00:00 2001 From: Alexander Goussas Date: Fri, 22 May 2026 19:10:26 -0500 Subject: [PATCH] docs: add bruno collection --- collections/larousse API/.gitignore | 9 +++++++++ collections/larousse API/Translate a word.yml | 19 +++++++++++++++++++ collections/larousse API/opencollection.yml | 10 ++++++++++ 3 files changed, 38 insertions(+) create mode 100644 collections/larousse API/.gitignore create mode 100644 collections/larousse API/Translate a word.yml create mode 100644 collections/larousse API/opencollection.yml diff --git a/collections/larousse API/.gitignore b/collections/larousse API/.gitignore new file mode 100644 index 0000000..e19311f --- /dev/null +++ b/collections/larousse API/.gitignore @@ -0,0 +1,9 @@ +# Secrets +.env* + +# Dependencies +node_modules + +# OS files +.DS_Store +Thumbs.db \ No newline at end of file diff --git a/collections/larousse API/Translate a word.yml b/collections/larousse API/Translate a word.yml new file mode 100644 index 0000000..a747ad7 --- /dev/null +++ b/collections/larousse API/Translate a word.yml @@ -0,0 +1,19 @@ +info: + name: Translate a word + type: http + seq: 1 + +http: + method: GET + url: http://localhost:8080/translate?q=voiture + params: + - name: q + value: voiture + type: query + auth: inherit + +settings: + encodeUrl: true + timeout: 0 + followRedirects: true + maxRedirects: 5 diff --git a/collections/larousse API/opencollection.yml b/collections/larousse API/opencollection.yml new file mode 100644 index 0000000..5cfa09e --- /dev/null +++ b/collections/larousse API/opencollection.yml @@ -0,0 +1,10 @@ +opencollection: 1.0.0 + +info: + name: larousse API +bundled: false +extensions: + bruno: + ignore: + - node_modules + - .git -- 2.43.0