From 6ff6c5af6510b321bf54b384d1263c50f1a122c0 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Thu, 19 Mar 2026 05:38:42 +0100 Subject: chore(treewide): Add missing license headers --- scripts/api-config.yaml | 10 ++++++++++ scripts/generate_api_client.sh | 10 ++++++++++ scripts/mk_sqlite_schema.sh | 10 ++++++++++ scripts/mkdb.sh | 1 + scripts/sqlite-schema-diagram.sql | 10 ++++++++++ scripts/validate_api.sh | 10 ++++++++++ 6 files changed, 51 insertions(+) (limited to 'scripts') diff --git a/scripts/api-config.yaml b/scripts/api-config.yaml index eba6f8f..9b0ff3f 100644 --- a/scripts/api-config.yaml +++ b/scripts/api-config.yaml @@ -1,3 +1,13 @@ +# rocie - An enterprise grocery management system +# +# Copyright (C) 2026 Benedikt Peetz +# SPDX-License-Identifier: GPL-3.0-or-later +# +# This file is part of Rocie. +# +# You should have received a copy of the License along with this program. +# If not, see . + --- avoidBoxedModels: true bestFitInt: true diff --git a/scripts/generate_api_client.sh b/scripts/generate_api_client.sh index ecbc497..0542b2a 100755 --- a/scripts/generate_api_client.sh +++ b/scripts/generate_api_client.sh @@ -1,5 +1,15 @@ #! /usr/bin/env sh +# rocie - An enterprise grocery management system +# +# Copyright (C) 2026 Benedikt Peetz +# SPDX-License-Identifier: GPL-3.0-or-later +# +# This file is part of Rocie. +# +# You should have received a copy of the License along with this program. +# If not, see . + set -e root="$(dirname "$0")/.." diff --git a/scripts/mk_sqlite_schema.sh b/scripts/mk_sqlite_schema.sh index 41054e9..89575f5 100755 --- a/scripts/mk_sqlite_schema.sh +++ b/scripts/mk_sqlite_schema.sh @@ -1,5 +1,15 @@ #! /usr/bin/env sh +# rocie - An enterprise grocery management system +# +# Copyright (C) 2026 Benedikt Peetz +# SPDX-License-Identifier: GPL-3.0-or-later +# +# This file is part of Rocie. +# +# You should have received a copy of the License along with this program. +# If not, see . + set -e root="$(dirname "$0")/.." diff --git a/scripts/mkdb.sh b/scripts/mkdb.sh index 9e0aaae..0916ed9 100755 --- a/scripts/mkdb.sh +++ b/scripts/mkdb.sh @@ -4,6 +4,7 @@ # # Copyright (C) 2024 Benedikt Peetz # Copyright (C) 2025 Benedikt Peetz +# Copyright (C) 2026 Benedikt Peetz # SPDX-License-Identifier: GPL-3.0-or-later # # This file is part of Rocie. diff --git a/scripts/sqlite-schema-diagram.sql b/scripts/sqlite-schema-diagram.sql index 153c41c..352e7c4 100644 --- a/scripts/sqlite-schema-diagram.sql +++ b/scripts/sqlite-schema-diagram.sql @@ -1,3 +1,13 @@ +-- rocie - An enterprise grocery management system +-- +-- Copyright (C) 2026 Benedikt Peetz +-- SPDX-License-Identifier: GPL-3.0-or-later +-- +-- This file is part of Rocie. +-- +-- You should have received a copy of the License along with this program. +-- If not, see . + -- Source: https://github.com/o0101/sqlite-schema-diagram -- We start a GraphViz graph diff --git a/scripts/validate_api.sh b/scripts/validate_api.sh index 056d550..b5803e8 100755 --- a/scripts/validate_api.sh +++ b/scripts/validate_api.sh @@ -1,5 +1,15 @@ #! /usr/bin/env sh +# rocie - An enterprise grocery management system +# +# Copyright (C) 2026 Benedikt Peetz +# SPDX-License-Identifier: GPL-3.0-or-later +# +# This file is part of Rocie. +# +# You should have received a copy of the License along with this program. +# If not, see . + root="$(dirname "$0")/.." api_path="$root/target/api.json" -- cgit 1.4.1