# You will need a .env file to use with the Docker containers. This is set up for localhost use with the Docker Compose fullstack. # APP_HTTP_LISTEN_HOST is the host for the HTTP web app. APP_HTTP_HOST="nm3clol-express-app" # APP_HTTP_LISTEN_PORT is the TCP port used to access the Node application's HTTP interface (usually by a reverse proxy). APP_HTTP_PORT=3000 # APP_HTTP_URL is the URL used to access the Node application (usually by a reverse proxy). APP_HTTP_URL="http://${APP_HTTP_HOST}:${APP_HTTP_PORT}" # SITE_NAME is used for page generation. SITE_NAME="(dev) No Moss 3 Carbo Landfill Online Localhost" # SITE_HOST is used for generating links for the search index. (If you leave this blank it should work using relative paths.) SITE_HOST="${APP_HTTP_HOST}" # SITE_URL is used for generating links for the search index. (If you leave this blank it should work using relative paths.) SITE_URL="${APP_HTTP_URL}" # SITE_WELCOME_MESSAGE is used for the homepage instead of "Welcome to ${SITE_NAME}!" SITE_WELCOME_MESSAGE="Devel' It Up, Developer!" # PUBLIC_PATH is the relative path to the directory to this project root for the public files. PUBLIC_PATH="../nm3clol-public" # PAGES_PATH is the relative path to the directory to this project root for the pages rather than public files. PAGES_PATH="pages" # STATIC_PATH is the relative path to the directory to this project root for the static asset files. STATIC_PATH="static" # SOLR_DOCS_HOST is the host for Apache Solr's core for indexed documents. 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 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}" # 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 port for Apache Solr's core for indexed laws. SOLR_LAW_PORT=$SOLR_DOCS_PORT # 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 the Search feature. SOLR_LAW_URL="http://${SOLR_LAW_HOST}:${SOLR_LAW_PORT}/solr/${SOLR_LAW_CORE}" # TIKA_HOST is the host to access the Apache Tika app. TIKA_HOST="tika" # TIKA_PORT is the port to access the Apache Tika app. TIKA_PORT=9998 # TIKA_URL is the URL to access the Apache Tika app. TIKA_URL="http://${TIKA_HOST}:${TIKA_PORT}"