From 8faace292ea7739081e788d3ff27317c245b7f99 Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Tue, 21 Jul 2026 18:56:58 +0200 Subject: [PATCH 1/2] chore: add commit template --- .gitmessage | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .gitmessage diff --git a/.gitmessage b/.gitmessage new file mode 100644 index 0000000..fb6c9dc --- /dev/null +++ b/.gitmessage @@ -0,0 +1,8 @@ + + +# ------------------------------------------------ SUBJECT AREA +# ---------------------------------------------------------------------- DETAIL AREA + +# Please enter a subject that is not longer than 50 character. +# If you enter a detailed description, each line should not be longer +# than 72 characters. Break the line as soon as you reach this limit. From 80dec73fb0ef07db62f56f6f51937665e34e65a0 Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Tue, 21 Jul 2026 18:59:08 +0200 Subject: [PATCH 2/2] chore: add setup scripts --- .gitmessage | 2 +- README.md | 6 +++++- scripts/setup.ps1 | 3 +++ scripts/setup.sh | 3 +++ 4 files changed, 12 insertions(+), 2 deletions(-) create mode 100755 scripts/setup.ps1 create mode 100755 scripts/setup.sh diff --git a/.gitmessage b/.gitmessage index fb6c9dc..95629f4 100644 --- a/.gitmessage +++ b/.gitmessage @@ -3,6 +3,6 @@ # ------------------------------------------------ SUBJECT AREA # ---------------------------------------------------------------------- DETAIL AREA -# Please enter a subject that is not longer than 50 character. +# Please enter a subject that is not longer than 50 characters. # If you enter a detailed description, each line should not be longer # than 72 characters. Break the line as soon as you reach this limit. diff --git a/README.md b/README.md index fe56826..31510de 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ # frontend -The frontend of the search engine Seekra. \ No newline at end of file +The frontend of the search engine Seekra. + +## Setup + +Please execute the setup script in `scripts/` for your platform when cloning the repository. \ No newline at end of file diff --git a/scripts/setup.ps1 b/scripts/setup.ps1 new file mode 100755 index 0000000..e45b876 --- /dev/null +++ b/scripts/setup.ps1 @@ -0,0 +1,3 @@ +#!/usr/bin/env pwsh + +git config --local commit.template .gitmessage \ No newline at end of file diff --git a/scripts/setup.sh b/scripts/setup.sh new file mode 100755 index 0000000..edb81af --- /dev/null +++ b/scripts/setup.sh @@ -0,0 +1,3 @@ +#!/usr/bin/bash + +git config --local commit.template .gitmessage \ No newline at end of file