You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Give yourself a pat on the back! With that simple spell, you've conjured up a test case with a mock! Explore the **Keploy directory** and you'll discover your handiwork in `test-1.yml` and `mocks.yml`.
@@ -265,17 +265,25 @@ We'll be running our sample application right on Linux, but just to make things
265
265
266
266
### 📼 Roll the Tape - Recording Time!
267
267
268
-
To create the required tables in the database, run:
268
+
Using the docker-compose file we will start our Postgres instance:-
269
269
270
270
```bash
271
-
python3 manage.py makemigrations
272
-
python3 manage.py migrate
271
+
docker compose up -d postgres
273
272
```
274
273
275
-
Using the docker-compose file we will start our Postgres instance:-
274
+
Now let's get the app up and running:
276
275
277
276
```bash
278
-
docker compose up -d
277
+
#To setup the virtual environment, run:
278
+
python3 -m virtualenv venv
279
+
source venv/bin/activate
280
+
281
+
#To install dependencies, run:
282
+
pip3 install -r requirements.txt
283
+
284
+
# To create the required tables in the database, run:
Give yourself a pat on the back! With that simple spell, you've conjured up a test case with a mock! Explore the **Keploy directory** and you'll discover your handiwork in `test-1.yml` and `mocks.yml`.
0 commit comments