From 381bab865cfb837c3ef407c5ab92c37cbed38e42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Olender?= Date: Thu, 16 Jan 2025 10:55:16 +0100 Subject: [PATCH] fix indentation issues --- CONTRIBUTING.md | 52 ++++++++++++++++++++++++------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1f31a2a80..84d88812f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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; + } } ``` @@ -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