Files
geointel/scripts/check_repo_structure.sh
T
Jens d5ea270329
GeoIntel release gates / Compile, test, contracts and builds (push) Canceled after 0s
GeoIntel release gates / Python and npm vulnerability policy (push) Canceled after 0s
GeoIntel release gates / GIS image, SBOM and container scan (push) Canceled after 0s
Update GeoIntel project files
2026-07-25 23:43:08 +02:00

8 lines
437 B
Bash

#!/usr/bin/env bash
set -euo pipefail
required=("README.md" "AGENTS.md" "docs/M5_OPERATIONAL_READINESS.md" "docs/BUILD_GOVERNANCE.md" "docs/V1_SCOPE_FREEZE.md" "backend" "frontend" "contracts/api" "contracts/database" "fixtures/geojson" "storage/originals" "storage/derived" "storage/exports")
for path in "${required[@]}"; do
if [ ! -e "$path" ]; then echo "Missing required path: $path" >&2; exit 1; fi
done
echo "Repo structure OK"