← back to Quadrille Showroom
scripts/gitify-phase2.sh
26 lines
#!/usr/bin/env bash
# Phase-2 gitify — LOCAL commits only, NO push, NO deploy.
# git + node were blocked for the build agent by the sandbox classifier, so this
# script exists for Steve to run the required gitify step. Three logical commits.
set -e
cd "$(dirname "$0")/.."
export GIT_AUTHOR_EMAIL="steve@designerwallcoverings.com"
export GIT_COMMITTER_EMAIL="steve@designerwallcoverings.com"
export GIT_AUTHOR_NAME="Steve"
export GIT_COMMITTER_NAME="Steve"
# 1) ROOM_TYPES registry + 5 types (the registry + builders live in showroom.js).
git add public/js/showroom.js
git commit -q -m "showroom P2: ROOM_TYPES registry + 5 types (bedroom/office/lobby/living/gallery)"
# 2) Hybrid furniture (crafted primitives + GLTFLoader + hero GLBs + credits).
git add public/js/GLTFLoader.js public/models/sofa.glb public/models/office-chair.glb public/models/CREDITS.md public/showroom.html
git commit -q -m "showroom P2: hybrid furniture — crafted primitives + GLTFLoader + 2 CC0/CC-BY hero GLBs (sofa, office-chair)"
# 3) Pickers (room-type + flooring) + adjustable-room sliders + verify script.
git add public/js/viewmodes.js scripts/verify-roomtypes.mjs scripts/gitify-phase2.sh scripts/glbcheck.cjs scripts/syntax-check.cjs
git commit -q -m "showroom P2: room-type + flooring pickers + adjustable-room W/D/H sliders (resizeRoom)"
echo "Done. Local commits:"
git log --oneline -3