From b83a45fc5936d17bac65e1697a35c802dc873b16 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Wed, 22 Dec 2021 14:21:04 +0100 Subject: [PATCH] fix(docs): realign indentation of code and comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Seems something went wrong the last time 🤷 --- website/docs/how-to/how-to-use-custom-strategies.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/how-to/how-to-use-custom-strategies.md b/website/docs/how-to/how-to-use-custom-strategies.md index 13a0b65270..84a6ac51e5 100644 --- a/website/docs/how-to/how-to-use-custom-strategies.md +++ b/website/docs/how-to/how-to-use-custom-strategies.md @@ -120,9 +120,9 @@ Strategies are stored in separate JavaScript files and loaded into the container -e UNLEASH_PROXY_SECRETS=some-secret \ -e UNLEASH_URL='http://unleash:4242/api/' \ -e UNLEASH_API_TOKEN=${API_TOKEN} \ - # highlight-start + # highlight-start -e UNLEASH_CUSTOM_STRATEGIES_FILE=/strategies/timestamp.js \ --mount type=bind,source="$(pwd)"/strategies,target=/strategies \ - # highlight-end + # highlight-end -p 3000:3000 --network unleash unleashorg/unleash-proxy ```