ISIS-2336: adds search
diff --git a/.gitignore b/.gitignore
index e2c6c2a..3e27d6c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
 .idea/

 .asciidoctor/

 npm-debug.log

+algolia.env
\ No newline at end of file
diff --git a/algolia-config.json b/algolia-config.json
new file mode 100644
index 0000000..d213f94
--- /dev/null
+++ b/algolia-config.json
@@ -0,0 +1,40 @@
+{
+  "index_name": "isis-apache-org",
+  "start_urls": [
+    "https://isis.apache.org"
+  ],
+  "sitemap_urls": [
+    "https://isis.apache.org/sitemap.xml"
+  ],
+  "stop_urls": [
+    "https://isis.apache.org/versions/1.17.0/documentation.html",
+    "https://isis.apache.org/versions/1.16.2/documentation.html",
+    "https://isis.apache.org/versions/1.16.1/documentation.html",
+    "https://isis.apache.org/versions/1.16.0/documentation.html",
+    "https://isis.apache.org/versions/1.15.1/documentation.html",
+    "https://isis.apache.org/versions/1.15.0/documentation.html",
+    "https://isis.apache.org/versions/1.14.0/documentation.html",
+    "https://isis.apache.org/versions/1.13.2.1/documentation.html",
+    "https://isis.apache.org/versions/1.13.2/documentation.html",
+    "https://isis.apache.org/versions/1.13.1/documentation.html",
+    "https://isis.apache.org/versions/1.13.0/documentation.html",
+    "https://isis.apache.org/versions/1.12.2/documentation.html",
+    "https://isis.apache.org/versions/1.12.1/documentation.html",
+    "https://isis.apache.org/versions/1.12.0/documentation.html",
+    "https://isis.apache.org/versions/1.11.1/documentation.html",
+    "https://isis.apache.org/versions/1.11.0/documentation.html"
+  ],
+  "selectors": {
+    "lvl0": {
+      "selector": "//nav[@class='breadcrumbs']//li[last()]/a",
+      "type": "xpath",
+      "global": true,
+      "default_value": "Home"
+    },
+    "lvl1": ".doc h1"
+    ,"lvl2": ".doc h2"
+    ,"lvl3": ".doc h3"
+    ,"lvl4": ".doc h4"
+    ,"text": ".doc p, .doc td.content, .doc th.tableblock"
+  }
+}
\ No newline at end of file
diff --git a/copyover.sh b/copyover.sh
new file mode 100644
index 0000000..556d28e
--- /dev/null
+++ b/copyover.sh
@@ -0,0 +1,13 @@
+#!/usr/bin/env bash
+pushd content
+for a in $(ls -1 | grep -v schema | grep -v versions)
+do
+	    rm -rf $a
+done
+popd
+
+pushd ../isis
+cp -Rf antora/target/site/* ../isis-site/content/.
+popd
+
+git add .