Skip to content

Commit 4bf3b32

Browse files
committed
Changed the localhost links back to http
1 parent a1ba2d9 commit 4bf3b32

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

AUTHORS

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ Rohith PR <[email protected]>
3737
Safa AlFulaij <[email protected]>
3838
santiavenda <[email protected]>
3939
Sergey Kolomenkin <https://kolomenkin.com>
40+
Swaraj Baral <[email protected]>
4041
4142
Tim Selman <[email protected]>
4243
Tom Glowka <[email protected]>
4344
Ulrich Schuster <[email protected]>
44-
Yaniv Peer <[email protected]>
45-
Swaraj Baral <[email protected]>
45+
Yaniv Peer <[email protected]>

README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,9 @@ installed and activated:
149149

150150
Browse to
151151

152-
* https://localhost:8000 for the list of available collections (in a non-JSON:API format!),
153-
* https://localhost:8000/swagger-ui/ for a Swagger user interface to the dynamic schema view, or
154-
* https://localhost:8000/openapi for the schema view's OpenAPI specification document.
152+
* http://localhost:8000 for the list of available collections (in a non-JSON:API format!),
153+
* http://localhost:8000/swagger-ui/ for a Swagger user interface to the dynamic schema view, or
154+
* http://localhost:8000/openapi for the schema view's OpenAPI specification document.
155155

156156

157157
-----

docs/getting-started.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ and add `rest_framework_json_api` to your `INSTALLED_APPS` setting below `rest_f
9797

9898

9999
Browse to
100-
* [https://localhost:8000](https://localhost:8000) for the list of available collections (in a non-JSON:API format!),
101-
* [https://localhost:8000/swagger-ui/](https://localhost:8000/swagger-ui/) for a Swagger user interface to the dynamic schema view, or
102-
* [https://localhost:8000/openapi](https://localhost:8000/openapi) for the schema view's OpenAPI specification document.
100+
* [http://localhost:8000](http://localhost:8000) for the list of available collections (in a non-JSON:API format!),
101+
* [http://localhost:8000/swagger-ui/](http://localhost:8000/swagger-ui/) for a Swagger user interface to the dynamic schema view, or
102+
* [http://localhost:8000/openapi](http://localhost:8000/openapi) for the schema view's OpenAPI specification document.
103103

104104
## Running Tests
105105

docs/usage.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1058,11 +1058,11 @@ class MySchemaGenerator(JSONAPISchemaGenerator):
10581058
}
10591059
}
10601060
schema['servers'] = [
1061-
{'url': 'https://localhost/v1', 'description': 'local docker'},
1062-
{'url': 'https://localhost:8000/v1', 'description': 'local dev'},
1061+
{'url': 'http://localhost/v1', 'description': 'local docker'},
1062+
{'url': 'http://localhost:8000/v1', 'description': 'local dev'},
10631063
{'url': 'https://api.example.com/v1', 'description': 'demo server'},
10641064
{'url': '{serverURL}', 'description': 'provide your server URL',
1065-
'variables': {'serverURL': {'default': 'https://localhost:8000/v1'}}}
1065+
'variables': {'serverURL': {'default': 'http://localhost:8000/v1'}}}
10661066
]
10671067
return schema
10681068
```

0 commit comments

Comments
 (0)