Files
Michael Wolf 1da81089cd Add sync.sh script
This downloads and installs dependencies necessary to run or develop.

Add docker-compose.yml for initial use
2026-01-11 16:06:43 -06:00

13 lines
265 B
Bash
Executable File

#!/bin/bash
# This file belongs to the framework. You are not expected to modify it.
set -eu
node_shim_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# shellcheck source=node.common
source "$node_shim_DIR"/node.common
exec "$nodejs_binary_dir/node" "$@"