From 59c37ae97e121bf1253baffd16dfb73f0b2d0954 Mon Sep 17 00:00:00 2001 From: jamuna1404 Date: Fri, 20 Jun 2025 10:31:55 +0530 Subject: [PATCH 1/3] Added myself to Contributors --- CONTRIBUTORS.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 CONTRIBUTORS.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md new file mode 100644 index 0000000..4540bee --- /dev/null +++ b/CONTRIBUTORS.md @@ -0,0 +1,3 @@ +## πŸ‘©β€πŸ’» Contributors + +- Jamuna Devi – Keploy API Fellowship participant πŸš€ From 14f9f7fca353b029419eaed8b0201df6b258f8fc Mon Sep 17 00:00:00 2001 From: jamuna1404 Date: Fri, 20 Jun 2025 19:49:45 +0530 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=93=9D=20Fixed=20clone=20command=20an?= =?UTF-8?q?d=20added=20beginner=20tips=20section=20in=20flask-redis=20READ?= =?UTF-8?q?ME?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- flask-redis/README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/flask-redis/README.md b/flask-redis/README.md index 7364e9d..470c896 100644 --- a/flask-redis/README.md +++ b/flask-redis/README.md @@ -20,7 +20,7 @@ brew install redis If homebrew is not installed, then go to https://brew.sh/ and install it. ```bash -git clone https://github.com/keploy/samples-typescript && cd samples-typescript/flask-redis +git clone https://github.com/keploy/samples-python && cd samples-python/flask-redis # Install the dependencies pip3 install -r requirements.txt @@ -158,3 +158,15 @@ keploy test -c 'sudo docker-compose up' --containerName "flask-web" --delay 10 ``` _Voila!! Our testcases has passed 🌟_ + +--- + +## πŸ’‘ Beginner Tips + +- πŸ§ͺ It's highly recommended to use a **virtual environment** to manage Python dependencies without conflicts. +- 🐳 Make sure Docker is installed and running before using the Docker-based setup. +- ⚠️ If you're on **Windows**, use **WSL** for native mode (not traditional CMD or PowerShell). +- 🧾 Don’t forget to create the `.env` file before running the app β€” it's required for Redis. +- 🧰 Not familiar with tools like Postman or curl? Try [Hoppscotch](https://hoppscotch.io) β€” it's beginner friendly. + +--- From 2293687d34000f39aa1f66bf91e3221e1a8f1a46 Mon Sep 17 00:00:00 2001 From: jamuna1404 Date: Fri, 22 Aug 2025 13:54:49 +0530 Subject: [PATCH 3/3] Update README.md --- flask-redis/README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/flask-redis/README.md b/flask-redis/README.md index 470c896..6dcb907 100644 --- a/flask-redis/README.md +++ b/flask-redis/README.md @@ -161,12 +161,6 @@ _Voila!! Our testcases has passed 🌟_ --- -## πŸ’‘ Beginner Tips -- πŸ§ͺ It's highly recommended to use a **virtual environment** to manage Python dependencies without conflicts. -- 🐳 Make sure Docker is installed and running before using the Docker-based setup. -- ⚠️ If you're on **Windows**, use **WSL** for native mode (not traditional CMD or PowerShell). -- 🧾 Don’t forget to create the `.env` file before running the app β€” it's required for Redis. -- 🧰 Not familiar with tools like Postman or curl? Try [Hoppscotch](https://hoppscotch.io) β€” it's beginner friendly. ---