2024-04-06 17:47:30 +01:00
|
|
|
install-hooks:
|
|
|
|
@echo "Installing git hooks"
|
|
|
|
git config core.hooksPath .git-hooks
|
2024-04-13 12:02:53 +01:00
|
|
|
|
|
|
|
validate-dev-branch:
|
|
|
|
git rebase -i origin/main -x 'cargo build'
|
|
|
|
git rebase -i origin/main -x 'cargo test'
|
|
|
|
git rebase -i origin/main -x 'cargo clippy -- -D warnings -W clippy::nursery -W clippy::unwrap_used -W clippy::expect_used'
|
2024-04-15 17:23:05 +01:00
|
|
|
|
|
|
|
start-ngrok:
|
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Uses NGROK_DOMAIN env var if available
|
|
|
|
if test -z ${NGROK_DOMAIN} ; then
|
|
|
|
ngrok http 8080
|
|
|
|
else
|
|
|
|
ngrok http --domain=${NGROK_DOMAIN} 8080
|
|
|
|
fi
|