chore: initialize project
All checks were successful
Deploy monie-landing (kaniko) / build-and-deploy (push) Successful in 11m16s

This commit is contained in:
2026-04-05 17:16:55 +03:00
commit bc4979b455
38 changed files with 11364 additions and 0 deletions

1
.husky/commit-msg Executable file
View File

@@ -0,0 +1 @@
npx --no -- commitlint --edit "$1"

1
.husky/pre-commit Executable file
View File

@@ -0,0 +1 @@
npm test

19
.husky/pre-push Executable file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env sh
# branch="$(git rev-parse --abbrev-ref HEAD)"
# case "$branch" in
# main|develop)
# echo "Direct pushes to $branch are not allowed."
# echo "Please create a feature/... or bugfix/... branch and open a PR/MR."
# exit 1
# ;;
# feature/*|bugfix/*|hotfix/*|chore/*)
# exit 0
# ;;
# *)
# echo "Invalid branch name: $branch"
# echo "Allowed branch prefixes: feature/*, bugfix/*, hotfix/*, chore/*"
# exit 1
# ;;
# esac