From 0e678269c77a0a697cd2dda8d0ff7d92203a340d Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Wed, 29 Jul 2026 16:34:13 +0200 Subject: [PATCH] chore: add setup scripts --- README.md | 6 +++++- scripts/setup.ps1 | 17 +++++++++++++++++ scripts/setup.sh | 17 +++++++++++++++++ 3 files changed, 39 insertions(+), 1 deletion(-) create mode 100755 scripts/setup.ps1 create mode 100755 scripts/setup.sh diff --git a/README.md b/README.md index 45fba3b..fd0bf63 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ # repository-template -The template for repositories \ No newline at end of file +The template for repositories + +## 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..f000d1e --- /dev/null +++ b/scripts/setup.ps1 @@ -0,0 +1,17 @@ +#!/usr/bin/env pwsh + +# Copyright 2026 Seekra + +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + +# http://www.apache.org/licenses/LICENSE-2.0 + +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +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..599f7f0 --- /dev/null +++ b/scripts/setup.sh @@ -0,0 +1,17 @@ +#!/usr/bin/bash + +# Copyright 2026 Seekra + +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at + +# http://www.apache.org/licenses/LICENSE-2.0 + +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +git config --local commit.template .gitmessage \ No newline at end of file