#!/bin/sh
# Launcher: resolve the real package dir (through the ~/.local/bin symlink) and run the server.
SELF="$(readlink -f "$0")"
DIR="$(cd "$(dirname "$SELF")/.." && pwd)"
exec node "$DIR/server.js" "$@"
