Merge pull request #60 from kinton/fix-typos-curl

docs: fix curl line break
This commit is contained in:
Mauricio Siu
2025-08-16 20:21:06 -06:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ Let's take a example of authenticated request:
```bash
curl -X 'GET' \
'https://dokploy.com/api/project.all' \
-H 'accept: application/json'
-H 'accept: application/json' \
-H 'x-api-key: YOUR-GENERATED-API-KEY'
```
then you will get the something like this:

View File

@@ -88,7 +88,7 @@ Steps:
```http
curl -X 'GET' \
'https://your-domain/api/project.all' \
-H 'accept: application/json'
-H 'accept: application/json' \
-H 'x-api-key: <token>'
```