Skip to content

Commit

Permalink
documentation linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioRadu committed May 3, 2024
1 parent b528101 commit 6a2571e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ More details on how fixtures work can be found here: https://github.com/dotkerne

php -S 0.0.0.0:8080 -t public

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

{
"message": "Welcome to DotKernel API!"
Expand Down
2 changes: 1 addition & 1 deletion docs/book/v4/introduction/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ More details on how fixtures work can be found here: https://github.com/dotkerne

php -S 0.0.0.0:8080 -t public

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

{
"message": "Welcome to DotKernel API!"
Expand Down
2 changes: 1 addition & 1 deletion docs/book/v4/tutorials/create-book-module.md
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ To execute the migrations run:

## Checking endpoints

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

curl -X POST http://0.0.0.0:8080/book
-H "Content-Type: application/json"
Expand Down
2 changes: 1 addition & 1 deletion documentation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ At this point, we assume you already have Postman installed. The following steps
You should see a new collection (`DotKernel_API`) added to your collection list, containing the documentation of all DotKernel API endpoints.

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

## Usage
Expand Down

0 comments on commit 6a2571e

Please sign in to comment.