chore: initial hub repo structure

This commit is contained in:
asepharyana
2026-07-09 22:08:26 +07:00
commit b31fe9d188
83 changed files with 7969 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -euo pipefail
echo "=== Setting up Git hooks ==="
REPO_ROOT=$(git rev-parse --show-toplevel)
cat <<EOF
️ This project uses Git submodules but does not enforce hooks via Husky anymore.
Each app submodule manages its own hooks independently.
To set up hooks locally, run:
cp -r scripts/git-hooks/ .git/hooks/
EOF