From d6558266ee90f55adea17382f0cb390bd4a33620 Mon Sep 17 00:00:00 2001 From: Jack Lin <46962923+blueskyson@users.noreply.github.com> Date: Sun, 2 Oct 2022 17:16:23 +0800 Subject: [PATCH] azurite: add page (#8630) --- pages/common/azurite.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/azurite.md diff --git a/pages/common/azurite.md b/pages/common/azurite.md new file mode 100644 index 0000000000..d2a7d2ca03 --- /dev/null +++ b/pages/common/azurite.md @@ -0,0 +1,24 @@ +# azurite + +> Azure Storage API compatible server (emulator) in local environment. +> More information: . + +- Use an existing [l]ocation as workspace path: + +`azurite {{-l|--location}} {{path/to/directory}}` + +- Disable access log displayed in console: + +`azurite {{-s|--silent}}` + +- Enable [d]ebug log by providing a file path as log destination: + +`azurite {{-d|--debug}} {{path/to/debug.log}}` + +- Customize the listening address of Blob/Queue/Table service: + +`azurite {{--blobHost|--queueHost|--tableHost}} {{0.0.0.0}}` + +- Customize the listening port of Blob/Queue/Table service: + +`azurite {{--blobPort|--queuePort|--tablePort}} {{8888}}`