Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## 👩‍💻 Contributors

- Jamuna Devi – Keploy API Fellowship participant 🚀
14 changes: 13 additions & 1 deletion flask-redis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.

---