This is an automated email from the ASF dual-hosted git repository. abudnikov pushed a commit to branch IGNITE-7595 in repository https://gitbox.apache.org/repos/asf/ignite.git
commit 9cc04bb416b068a6d14b806cf7d695f708cadaf6 Author: abudnikov <[email protected]> AuthorDate: Fri Aug 14 18:45:50 2020 +0300 update toc and setup page --- docs/_config.yml | 4 ++-- docs/_data/toc.yaml | 8 ++++++-- docs/_docs/setup.adoc | 25 ++++++++++++++++++++----- 3 files changed, 28 insertions(+), 9 deletions(-) diff --git a/docs/_config.yml b/docs/_config.yml index f0411db..a3d394a 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1,6 +1,6 @@ exclude: [guidelines.md, "Gemfile", "Gemfile.lock", README.adoc, "_docs/code-snippets", "_docs/includes", '*.sh'] attrs: &asciidoc_attributes - version: '2.8.1' + version: 2.9 base_url: /docs stylesdir: /docs/assets/css imagesdir: /docs/{version} @@ -12,7 +12,7 @@ attrs: &asciidoc_attributes githubUrl: https://github.com/apache/ignite/tree/master collections: docs: - permalink: /docs/2.8.1/:path:output_ext + permalink: /docs/2.9/:path:output_ext output: true defaults: - diff --git a/docs/_data/toc.yaml b/docs/_data/toc.yaml index 950fe1d..7658d8ca 100644 --- a/docs/_data/toc.yaml +++ b/docs/_data/toc.yaml @@ -20,9 +20,9 @@ - title: Setting Up items: - title: Setting Up GridGain for Java - url: /developers-guide/setup + url: /setup - title: Setting Up GridGain for .NET/C# - url: /developers-guide/setup-dotnet + url: /setup-dotnet - title: Understanding Configuration url: /understanding-configuration - title: Configuring Logging @@ -43,6 +43,8 @@ url: /clustering/network-configuration - title: Connecting Client Nodes url: /clustering/connect-client-nodes + - title: Running Client Nodes Behind NAT + url: /clustering/running-client-nodes-behind-nat - title: Data Modeling items: - title: Introduction @@ -175,6 +177,8 @@ url: /monitoring-metrics/new-metrics - title: System Views url: /monitoring-metrics/system-views + - title: Tracing + url: /monitoring-metrics/tracing - title: Security url: /security items: diff --git a/docs/_docs/setup.adoc b/docs/_docs/setup.adoc index 01506d3..5bdfca8 100644 --- a/docs/_docs/setup.adoc +++ b/docs/_docs/setup.adoc @@ -6,7 +6,6 @@ Ignite was tested on: include::includes/prereqs.adoc[] - == Running Ignite with Java 11 or later include::includes/java9.adoc[] @@ -14,20 +13,36 @@ include::includes/java9.adoc[] == Using Binary Distribution -* Download the appropriate binary package from TODO. +* Download the appropriate binary package from https://ignite.apache.org/download.cgi[Apache Ignite Downloads^]. * Unzip the archive into a directory. * (Optional) Set the `IGNITE_HOME` environment variable to point to the installation folder and make sure there is no trailing `/` in the path. == Using Maven -The easiest way to start developing with Ignite is to use Maven. +The easiest way to use Ignite is to add it to your pom. + +[source, xml] +---- + +<properties> + <ignite.version>{version}</ignite.version> +</properties> + +<dependencies> + <dependency> + <groupId>org.apache.ignite</groupId> + <artifactId>ignite-core</artifactId> + <version>${ignite.version}</version> + </dependency> +</dependencies> +---- + -*TODO* == Using Docker -If you want to run Ignite in Docker, refer to the link:on-premises-deployment#installing-using-docker[Docker Deployment] section. +If you want to run Ignite in Docker, refer to the link:installation/installing-using-docker[Docker Deployment] section. == Configuring Work Directory
