DOCS: Overhaul of all the DOCS in samples-python by V-Silpin · Pull Request #69 · keploy/samples-python · GitHub
Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
32 changes: 29 additions & 3 deletions flask-redis/README.md
37 changes: 34 additions & 3 deletions sanic-mongo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,40 @@ alias keploy='sudo docker run --pull always --name keploy-v2 -p 16789:16789 --pr

Now head to the folder of the application and run

```
pip3 install -r requirements.txt
```
1. Navigate your project directory:

```bash
cd sample-python/sanic-mongo
```

2. Create a Virtual Environment:

```bash
python -m venv venv
```
3. Activating the Virtual Environment

On Windows:

```bash
venv\Scripts\activate
```

On macOS and Linux:

```bash
source venv/bin/activate
```
4. Install the required Python packages:

```bash
pip install -r requirements.txt
```
5. To exit your Virtual Environment:

```bash
deactivate
```

### Lights, Camera, Record! 🎥

Expand Down
38 changes: 34 additions & 4 deletions sanic-postgres/README.md