This is an automated email from the ASF dual-hosted git repository.
gaojun2048 pushed a commit to branch main
in repository
https://gitbox.apache.org/repos/asf/incubator-seatunnel-website.git
The following commit(s) were added to refs/heads/main by this push:
new bde46d0d0d [Doc][V1] Fix start-v1 local docs (#151)
bde46d0d0d is described below
commit bde46d0d0d660991c60b323daea9f62598d44910
Author: Hisoka <[email protected]>
AuthorDate: Thu Oct 6 14:23:01 2022 +0800
[Doc][V1] Fix start-v1 local docs (#151)
---
versioned_docs/version-2.2.0-beta/start/local.mdx | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/versioned_docs/version-2.2.0-beta/start/local.mdx
b/versioned_docs/version-2.2.0-beta/start/local.mdx
index 47239d7b62..cd03403e65 100644
--- a/versioned_docs/version-2.2.0-beta/start/local.mdx
+++ b/versioned_docs/version-2.2.0-beta/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