This is an automated email from the ASF dual-hosted git repository.
tyrantlucifer pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel.git
The following commit(s) were added to refs/heads/dev by this push:
new 21137dc4e [Doc] Fix start local docs format error (#3005)
21137dc4e is described below
commit 21137dc4edf4260068d400245ff268ac7128cbf6
Author: Hisoka <[email protected]>
AuthorDate: Thu Oct 6 14:49:03 2022 +0800
[Doc] Fix start local docs format error (#3005)
---
docs/en/start/local.mdx | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/docs/en/start/local.mdx b/docs/en/start/local.mdx
index 52be5a0c0..fc708812e 100644
--- a/docs/en/start/local.mdx
+++ b/docs/en/start/local.mdx
@@ -35,17 +35,17 @@ tar -xzvf
"apache-seatunnel-incubating-${version}-bin.tar.gz"
Since 2.2.0, the binary package does not provide connector dependencies by
default, so when using it for the first time, we need to execute the following
command to install the connector: (Of course, you can also manually download
the connector from [Apache Maven Repository](https://repo.
maven.apache.org/maven2/org/apache/seatunnel/ to download, then manually move
to the connectors directory).
```bash
sh bin/install_plugin.sh
-````
+```
If you need to specify the version of the connector, take 2.2.0 as an example,
we need to execute
```bash
sh bin/install_plugin.sh 2.2.0
-````
+```
Usually we don't need all the connector plugins, so you can specify the
plugins you need by configuring `config/plugin_config`, for example, you only
need the `flink-assert` plugin, then you can modify plugin.properties as
-````plugin_config
+```plugin_config
--flink-connectors--
seatunnel-connector-flink-assert
--end--
-```bash
+```
## Run SeaTunnel Application