Skip to content

Commit

Permalink
fix indentation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
TC-MO committed Jan 16, 2025
1 parent 54edcfa commit 381bab8
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,27 +46,27 @@ This will be enough to work on Platform, Academy and, OpenAPI. If you want to wo
4. To serve them together, setup the nginx server with the following configuration:

```nginx
server {
listen 80;
server_name docs.apify.loc;
location / {
proxy_pass http://localhost:3000;
}
location /api/client/js {
proxy_pass http://localhost:3001;
}
location /api/client/python {
proxy_pass http://localhost:3002;
}
location /sdk/js {
proxy_pass http://localhost:3003;
}
location /sdk/python {
proxy_pass http://localhost:3004;
}
location /cli {
proxy_pass http://localhost:3005;
}
server {
listen 80;
server_name docs.apify.loc;
location / {
proxy_pass http://localhost:3000;
}
location /api/client/js {
proxy_pass http://localhost:3001;
}
location /api/client/python {
proxy_pass http://localhost:3002;
}
location /sdk/js {
proxy_pass http://localhost:3003;
}
location /sdk/python {
proxy_pass http://localhost:3004;
}
location /cli {
proxy_pass http://localhost:3005;
}
}
```

Expand Down Expand Up @@ -180,11 +180,11 @@ Example schema
```yaml
type: object
properties:
id:
description: The resource ID
readOnly: true
allOf:
-$ref: ./ResourceId.yaml
id:
description: The resource ID
readOnly: true
allOf:
-$ref: ./ResourceId.yaml
```

#### Path documentation
Expand Down

0 comments on commit 381bab8

Please sign in to comment.