This is an automated email from the ASF dual-hosted git repository.

aradzinski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft-website.git


The following commit(s) were added to refs/heads/master by this push:
     new e588bfd  WIP.
e588bfd is described below

commit e588bfdfdde2809150c8225d12558b44d09bb694
Author: Aaron Radzinski <[email protected]>
AuthorDate: Thu Oct 1 10:54:15 2020 -0700

    WIP.
---
 assets/css/style.scss => _scss/installation.scss | 54 +++---------------------
 assets/css/style.scss                            |  1 +
 installation.html                                | 20 +++++++--
 3 files changed, 23 insertions(+), 52 deletions(-)

diff --git a/assets/css/style.scss b/_scss/installation.scss
similarity index 50%
copy from assets/css/style.scss
copy to _scss/installation.scss
index 70d8461..5b0933b 100644
--- a/assets/css/style.scss
+++ b/_scss/installation.scss
@@ -1,6 +1,3 @@
----
----
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -18,50 +15,9 @@
  * limitations under the License.
  */
 
-/*
- * Constants.
- * ----------
- */
-$font-size: 14px;
-$default-font: "Helvetica Neue";
-
-@import 'fonts';
-@import 'colors';
-@import 'misc';
-@import 'header';
-@import 'footer';
-@import 'sh';
-@import 'index';
-@import '404';
-@import 'buttons';
-@import 'download';
-@import 'three-cols';
-@import 'basic-concepts';
-@import 'use-cases';
-@import 'server-and-probes';
-@import 'metrics-and-tracing';
-@import 'integrations';
-@import 'community';
-
-html {
-    position: relative;
-    min-height: 100%;
-    height: 100%;
+#installation {
+  i.fa-bomb {
+    color: $color-pomegranate;
+    font-size: 90%;
+  }
 }
-
-body {
-    background-color: $background-color;
-    color: $foreground-color;
-    min-height: 100%;
-    height: 100%;
-}
-
-em.high {
-    font-style: normal;
-    padding: 2px 4px 3px 4px;
-    background-color: #d36da6;
-    color: #fff;
-    border-radius: 1px;
-}
-
-
diff --git a/assets/css/style.scss b/assets/css/style.scss
index 70d8461..5565bf8 100644
--- a/assets/css/style.scss
+++ b/assets/css/style.scss
@@ -41,6 +41,7 @@ $default-font: "Helvetica Neue";
 @import 'server-and-probes';
 @import 'metrics-and-tracing';
 @import 'integrations';
+@import 'installation';
 @import 'community';
 
 html {
diff --git a/installation.html b/installation.html
index 8c8c31b..8e171f7 100644
--- a/installation.html
+++ b/installation.html
@@ -21,8 +21,8 @@ id: installation
  limitations under the License.
 -->
 
-<div class="col-md-8 second-column">
-    <section id="installation">
+<div id="installation" class="col-md-8 second-column">
+    <section id="install">
         <h2 class="section-title">Installation</h2>
         <p>
             Apache NLPCraft requires <b>no special installation</b> operations:
@@ -33,6 +33,19 @@ id: installation
             <li>If you <a href="/download.html">used</a> Maven/Gradle/SBT - 
you know what you are doing 👍</li>
         </ul>
     </section>
+    <section id="clean">
+        <h2 class="section-title">Clean</h2>
+        <p>
+            For releases marked with <i class="fas fa-fw fa-bomb"></i> you 
need to clean our existing database. If you are
+            using the Apache Ignite storage (default configuration for 
NLPCraft) you can accomplish this by
+            removing <code>${USER_HOME}/.nlpcraft/ignite</code> folder.
+        </p>
+        <p>
+            If you are using other storage engines (e.g. Postgres or MySQL) 
you need to follow their specific
+            procedures to recreate the database using SQL scripts from 
<code>sql</code> sub-folder in NLPCraft
+            installation directory.
+        </p>
+    </section>
     <section id="config">
         <h2 class="section-title">External Configuration</h2>
         <p>
@@ -69,7 +82,8 @@ id: installation
 <div class="col-md-2 third-column">
     <ul class="side-nav">
         <li class="side-nav-title">On This Page</li>
-        <li><a href="#installation">Installation</a></li>
+        <li><a href="#install">Installation</a></li>
+        <li><a href="#clean">Clean</a></li>
         <li><a href="#config">External Config</a></li>
         <li><a href="#ignite">Apache Ignite</a></li>
         {% include quick-links.html %}

Reply via email to