set -o allexport
source ./env
set +o allexport

if ! [ -x "$(command -v bun)" ]; then
  curl -fsSL https://bun.sh/install | bash
fi

if [ ! -d "node_modules" ]; then
  bun i
fi
