Skip to content

Commit 6a2571e

Browse files
committed
documentation linting fix
1 parent b528101 commit 6a2571e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ More details on how fixtures work can be found here: https://github.com/dotkerne
9090

9191
php -S 0.0.0.0:8080 -t public
9292

93-
Sending a GET request to the [home page](http://localhost:8080/) should output the following message:
93+
Sending a GET request to the [home page](http://0.0.0.0:8080/) should output the following message:
9494

9595
{
9696
"message": "Welcome to DotKernel API!"

docs/book/v4/introduction/installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ More details on how fixtures work can be found here: https://github.com/dotkerne
6666

6767
php -S 0.0.0.0:8080 -t public
6868

69-
Sending a GET request to the [home page](http://localhost:8080/) should output the following message:
69+
Sending a GET request to the [home page](http://0.0.0.0:8080/) should output the following message:
7070

7171
{
7272
"message": "Welcome to DotKernel API!"

docs/book/v4/tutorials/create-book-module.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ To execute the migrations run:
595595

596596
## Checking endpoints
597597

598-
If we did everything as planned we can call the `http://localhost/books` endpoint and create a new book:
598+
If we did everything as planned we can call the `http://0.0.0.0:8080/books` endpoint and create a new book:
599599

600600
curl -X POST http://0.0.0.0:8080/book
601601
-H "Content-Type: application/json"

documentation/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ At this point, we assume you already have Postman installed. The following steps
1717
You should see a new collection (`DotKernel_API`) added to your collection list, containing the documentation of all DotKernel API endpoints.
1818

1919
Also, you should see a new environment (`DotKernel_API`) added to your environments.
20-
This contains a variable, called `APPLICATION_URL` set to `http://localhost:8080`.
20+
This contains a variable, called `APPLICATION_URL` set to `http://0.0.0.0:8080`.
2121
If your application runs on a different URL/port, modify this variable accordingly.
2222

2323
## Usage

0 commit comments

Comments
 (0)