diff --git a/.gitmessage b/.gitmessage new file mode 100644 index 0000000..95629f4 --- /dev/null +++ b/.gitmessage @@ -0,0 +1,8 @@ + + +# ------------------------------------------------ SUBJECT AREA +# ---------------------------------------------------------------------- DETAIL AREA + +# 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