scripts-to-rule-them-all (#174)
All checks were successful
Check / check (push) Successful in 4s

Reviewed-on: #174
Co-authored-by: sneak <sneak@sneak.berlin>
Co-committed-by: sneak <sneak@sneak.berlin>
This commit was merged in pull request #174.
This commit is contained in:
2026-07-07 02:15:20 +02:00
committed by Jeffrey Paul
parent bee933ce8e
commit 291f85f3ed
17 changed files with 569 additions and 36 deletions

14
script/setup Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
# script/setup: set up the repo for development after a fresh clone:
# installs dependencies (script/bootstrap) and the git pre-commit hook.
# Add any repo-specific initialization (db init, .env template) here.
set -eu
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd -P)"
main() {
"$SCRIPT_DIR/bootstrap"
"$SCRIPT_DIR/install-precommit"
}
main "$@"