spb/metrika Public
Stata-class statistics, GPU-accelerated by Apple Silicon. Native Swift — no Electron, no Python runtime, no compromises.
Swift 92.4%
HTML 3.3%
R 3%
Shell 1.3%
1#!/bin/bash2#3# install_hooks.sh — Metrika4#5# Author: Simon-Pierre Boucher6# Contact: contact@spboucher.ai7# Copyright © 2026 Simon-Pierre Boucher. All rights reserved.8#9# Installs the repo git hooks. Run once after cloning.10#11set -euo pipefail12ROOT="$(cd "$(dirname "$0")/.." && pwd)"13install -m 755 "$ROOT/scripts/pre-commit" "$ROOT/.git/hooks/pre-commit"14echo "✅ pre-commit hook installed"15