diff options
| author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-03-19 05:38:42 +0100 |
|---|---|---|
| committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2026-03-19 05:38:42 +0100 |
| commit | 6ff6c5af6510b321bf54b384d1263c50f1a122c0 (patch) | |
| tree | 2153c8e42b762ec29905f1095e578c7fee8b9855 /scripts | |
| parent | build(rocie-server/nix/package): Include required dependencies (diff) | |
| download | server-6ff6c5af6510b321bf54b384d1263c50f1a122c0.zip | |
chore(treewide): Add missing license headers
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/api-config.yaml | 10 | ||||
| -rwxr-xr-x | scripts/generate_api_client.sh | 10 | ||||
| -rwxr-xr-x | scripts/mk_sqlite_schema.sh | 10 | ||||
| -rwxr-xr-x | scripts/mkdb.sh | 1 | ||||
| -rw-r--r-- | scripts/sqlite-schema-diagram.sql | 10 | ||||
| -rwxr-xr-x | scripts/validate_api.sh | 10 |
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" |
