mirror of
https://github.com/tiennm99/hugo-blox-builder.git
synced 2026-09-10 14:20:13 +00:00
114 lines
3.1 KiB
Bash
Executable File
114 lines
3.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
INITIAL_DIR="$(pwd)"
|
|
|
|
cleanup() {
|
|
cd "$INITIAL_DIR" || true
|
|
}
|
|
trap cleanup EXIT INT TERM
|
|
|
|
usage() {
|
|
echo "Usage: ./scripts/view-starter-dev.sh <starter-name> [--debug] [--no-pagefind]"
|
|
echo "Example: ./scripts/view-starter-dev.sh blog --debug"
|
|
}
|
|
|
|
if [ $# -lt 1 ]; then
|
|
usage
|
|
exit 1
|
|
fi
|
|
|
|
STARTER=""
|
|
DEBUG_MODE=false
|
|
PAGEFIND=true
|
|
|
|
while [ $# -gt 0 ]; do
|
|
case "$1" in
|
|
--debug)
|
|
DEBUG_MODE=true
|
|
shift
|
|
;;
|
|
--no-pagefind)
|
|
PAGEFIND=false
|
|
shift
|
|
;;
|
|
-h|--help)
|
|
usage
|
|
exit 0
|
|
;;
|
|
-*)
|
|
echo "Unknown option: $1"
|
|
usage
|
|
exit 1
|
|
;;
|
|
*)
|
|
STARTER="$1"
|
|
shift
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [ -z "$STARTER" ]; then
|
|
usage
|
|
exit 1
|
|
fi
|
|
|
|
# Run Hugo from the site dir so Tailwind CLI is discoverable
|
|
cd "starters/$STARTER"
|
|
|
|
# Ensure Tailwind CLI exists in starter (required for Hugo css.TailwindCSS)
|
|
if [ -f "package.json" ] && [ ! -x "node_modules/.bin/tailwindcss" ]; then
|
|
echo "📦 Installing Tailwind CLI in starter directory for Hugo..."
|
|
if command -v pnpm >/dev/null 2>&1; then
|
|
pnpm install
|
|
else
|
|
npm install
|
|
fi
|
|
fi
|
|
|
|
# Core environment for local dev linking modules and enabling demo/debug flags
|
|
export HUGO_BLOX_DEMO=true
|
|
export HUGO_BLOX_DEBUG=true
|
|
export HUGO_ENVIRONMENT=development
|
|
export HUGOxPARAMSxDECAP_CMSxLOCAL_BACKEND=true
|
|
export HUGO_MODULE_REPLACEMENTS="github.com/HugoBlox/hugo-blox-builder/modules/blox-bootstrap/v5 -> ../../../modules/blox-bootstrap,github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-netlify -> ../../../modules/blox-plugin-netlify,github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-reveal -> ../../../modules/blox-plugin-reveal,github.com/HugoBlox/hugo-blox-builder/modules/blox-tailwind -> ../../../modules/blox-tailwind,github.com/HugoBlox/hugo-blox-builder/modules/blox-plugin-decap-cms -> ../../../modules/blox-plugin-decap-cms,github.com/HugoBlox/hugo-blox-builder/modules/blox-core -> ../../../modules/blox-core,github.com/HugoBlox/hugo-blox-builder/modules/blox-seo -> ../../../modules/blox-seo,github.com/HugoBlox/hugo-blox-builder/modules/blox-analytics -> ../../../modules/blox-analytics"
|
|
|
|
# Optionally pre-build and generate Pagefind index for local search
|
|
if [ "$PAGEFIND" = true ]; then
|
|
hugo
|
|
if command -v pnpm >/dev/null 2>&1; then
|
|
pnpm dlx pagefind --site "public" --output-subdir ../static/pagefind
|
|
else
|
|
npm_config_yes=true npx pagefind --site "public" --output-subdir ../static/pagefind
|
|
fi
|
|
fi
|
|
|
|
# Compose Hugo server args
|
|
HUGO_ARGS=(
|
|
server
|
|
--disableFastRender
|
|
--printI18nWarnings
|
|
--printPathWarnings
|
|
--gc
|
|
-F
|
|
--port 8081
|
|
--bind 0.0.0.0
|
|
)
|
|
|
|
if [ "$DEBUG_MODE" = true ]; then
|
|
HUGO_ARGS+=(
|
|
--logLevel debug
|
|
--panicOnWarning
|
|
--templateMetrics
|
|
--templateMetricsHints
|
|
--ignoreCache
|
|
--noHTTPCache
|
|
--renderStaticToDisk
|
|
-D
|
|
-E
|
|
)
|
|
fi
|
|
|
|
hugo "${HUGO_ARGS[@]}"
|