about summary refs log tree commit diff stats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/api-config.yaml10
-rwxr-xr-xscripts/generate_api_client.sh10
-rwxr-xr-xscripts/mk_sqlite_schema.sh10
-rwxr-xr-xscripts/mkdb.sh1
-rw-r--r--scripts/sqlite-schema-diagram.sql10
-rwxr-xr-xscripts/validate_api.sh10
6 files changed, 51 insertions, 0 deletions
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 <benedikt.peetz@b-peetz.de>
+# 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 <https://www.gnu.org/licenses/gpl-3.0.txt>.
+
 ---
 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 <benedikt.peetz@b-peetz.de>
+# 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 <https://www.gnu.org/licenses/gpl-3.0.txt>.
+
 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 <benedikt.peetz@b-peetz.de>
+# 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 <https://www.gnu.org/licenses/gpl-3.0.txt>.
+
 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 <benedikt.peetz@b-peetz.de>
 # Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
+# Copyright (C) 2026 Benedikt Peetz <benedikt.peetz@b-peetz.de>
 # 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 <benedikt.peetz@b-peetz.de>
+-- 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 <https://www.gnu.org/licenses/gpl-3.0.txt>.
+
 -- 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 <benedikt.peetz@b-peetz.de>
+# 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 <https://www.gnu.org/licenses/gpl-3.0.txt>.
+
 root="$(dirname "$0")/.."
 api_path="$root/target/api.json"