From ba7d50f4957086b4b0161d4de1a3772bdfad4fbf Mon Sep 17 00:00:00 2001 From: David Ball Date: Sat, 15 Jun 2024 19:45:31 -0400 Subject: [PATCH] Updated .env.example to use SOLR_DOCS_CORE instead of SOLR_DOCS_CORE_NAME, etc. --- .env.example | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.env.example b/.env.example index 0782e9ba..517fb283 100644 --- a/.env.example +++ b/.env.example @@ -27,19 +27,19 @@ STATIC_DIR="static" SOLR_DOCS_HOST="solr" # SOLR_DOCS_PORT is the port for Apache Solr's core for indexed documents. SOLR_DOCS_PORT=8983 -# SOLR_DOCS_CORE_NAME is the core name for Apache Solr's core for indexed documents. -SOLR_DOCS_CORE_NAME="nm3clol_core" +# SOLR_DOCS_CORE is the core name for Apache Solr's core for indexed documents. +SOLR_DOCS_CORE="nm3clol_core" # SOLR_DOCS_URL is the URL to access Apache Solr's core for indexed documents. It is used by Gulp and the Search feature. -SOLR_DOCS_URL="http://${SOLR_DOCS_HOST}:${SOLR_DOCS_PORT}/solr/${SOLR_DOCS_CORE_NAME}" +SOLR_DOCS_URL="http://${SOLR_DOCS_HOST}:${SOLR_DOCS_PORT}/solr/${SOLR_DOCS_CORE}" # SOLR_LAW_HOST is the host for Apache Solr's core for indexed laws. SOLR_LAW_HOST="$SOLR_DOCS_HOST" # SOLR_LAW_PORT is the host for Apache Solr's core for indexed laws. SOLR_LAW_PORT=$SOLR_DOCS_PORT -# SOLR_LAW_CORE_NAME is the core name for Apache Solr's core for indexed laws. -SOLR_LAW_CORE_NAME="vacode_core" +# SOLR_LAW_CORE is the core name for Apache Solr's core for indexed laws. +SOLR_LAW_CORE="vacode_core" # SOLR_LAW_URL is the URL to access Apache Solr's core for indexed laws. It is used by Gulp (and eventually the Search feature.) -SOLR_LAW_URL="http://${SOLR_LAW_HOST}:${SOLR_LAW_PORT}/solr/${SOLR_LAW_CORE_NAME}" +SOLR_LAW_URL="http://${SOLR_LAW_HOST}:${SOLR_LAW_PORT}/solr/${SOLR_LAW_CORE}" # TIKA_HOST is the URL to access the host running Apache Tika. TIKA_HOST="tika"