16 lines
292 B
Bash
Executable File
16 lines
292 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
|
|
|
cd "${ROOT}"
|
|
|
|
set -a
|
|
source "${ROOT}/.env"
|
|
if [[ -f "${ROOT}/.env.colima" ]]; then
|
|
source "${ROOT}/.env.colima"
|
|
fi
|
|
set +a
|
|
|
|
exec "${NODE_BIN:-/opt/homebrew/opt/node@24/bin/node}" "${ROOT}/scripts/dev-core.mjs"
|