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
Postman instruction clarification for readme.md (#148)
* Update readme.md for windows compatibility. Using python interpreter instead of bash because it ignores line endings and will work on all platforms
* Changed Postman Instruction to add the currect address to the right fields in dev environment
* Update Postman image to include Current Value field entry
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -193,16 +193,16 @@ Linux,
193
193
194
194
2. Once you have Postman open, click on file -> import and import the .json file
195
195
3. Click on the settings gear icon on the far top right (next to the eye icon) and click to add a new environment.
196
-
4. Name your environment `dev` and create a variable called `api_url`. Give it a value of `https://localhost:8000`, which is the URL of your Django dev environment when it is running.
197
-
5. Now, as long you have the Django app (https://localhost:8000) running, you should be able to make requests like POST Create User and POST Authenticate.
196
+
4. Name your environment `dev` and create a variable called `api_url`. For both the "Initial Value" and "Current Value," fill in `http://localhost:8000` which is the URL of your Django dev environment when it is running.
197
+
5. Now, as long you have the Django app (http://localhost:8000) running, you should be able to make requests like POST Create User and POST Authenticate.
198
198
Click on this link to see what you should expect: https://imgur.com/hd9VB6k
199
199
200
200
-`POST` Create User will create a new user in your `localhost:8000` running Django app,
201
201
- making a request to `POST Authenticate` will authenticate whether or not that user exists.
202
202
203
-

203
+

204
204
205
-
5. Now, as long you have the Django app (https://localhost:8000) running, you should be able to make requests like `POST Create User` and `POST Authenticate` by clicking on the blue "Send" button in Postman.
205
+
5. Now, as long you have the Django app (http://localhost:8000) running, you should be able to make requests like `POST Create User` and `POST Authenticate` by clicking on the blue "Send" button in Postman.
0 commit comments