16 lines
629 B
Bash
16 lines
629 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||
|
|
cd "$SCRIPT_DIR"
|
||
|
|
|
||
|
|
lsof -ti:3030 | xargs kill -9 2>/dev/null || true
|
||
|
|
|
||
|
|
HTMX_TEMPLATE_PATH="${HTMX_TEMPLATE_PATH:-target/site/htmx-templates}" \
|
||
|
|
SITE_CONFIG_PATH="${SITE_CONFIG_PATH:-site/config/index.ncl}" \
|
||
|
|
NICKEL_IMPORT_PATH="${NICKEL_IMPORT_PATH:-../../rustelo/code/resources/nickel:site/config}" \
|
||
|
|
#exec target/debug/rustelo-htmx-server
|
||
|
|
#exec target/release/rustelo-htmx-server
|
||
|
|
#exec /Volumes/Devel/website-htmx-rustelo/target/debug/rustelo-htmx-server
|
||
|
|
exec /Volumes/Devel/website-htmx-rustelo/target/release/rustelo-htmx-server
|