← back to Dw Design Bridge

seed-briefs.sh

26 lines

#!/usr/bin/env bash
# Queue a batch of diverse design briefs across the DW vertical fleet.
set -uo pipefail

URL=${URL:-http://127.0.0.1:9923/api/jobs}

queue() {
  local brief="$1" count="${2:-3}"
  curl -s -X POST "$URL" -H 'Content-Type: application/json' \
    -d "{\"brief\":\"$brief\",\"count\":$count}" \
    | python3 -c "import json,sys; d=json.load(sys.stdin); print(f\"queued {d['id']} · count={d['count']}\")" 2>/dev/null
}

queue "Cork wallcovering · Sherman Oaks office reception · sustainable · earthy palette · acoustic damping · medium-scale woven" 3
queue "Silk wallpaper · Beverly Hills mansion entry foyer · jewel-toned · Chinese chinoiserie hand-painted · dramatic" 3
queue "1920s art deco · jazz-age library · gilded geometric sunburst · midnight blue and gold · trade-grade vinyl" 3
queue "1980s memphis · postmodern boutique retail · neon palette · oversized geometric blocks · class A" 3
queue "Eco-sustainable · low-VOC corporate office · soft humanist · grasscloth-inspired · earth tones" 3
queue "Pastel children's room · peel-and-stick · whimsical small-scale · soft botanical · safe non-toxic" 3
queue "Restaurant private dining · moody · velvet-noir botanical · candle-lit · class A vinyl scrubbable" 3
queue "Hotel lobby · luxury · oversized chinoiserie panoramic mural · gold-leaf accents · trade-grade" 3
queue "Atomic-age 50s diner revival · boomerang starburst · turquoise coral cream · midcentury optimistic" 3
queue "Architectural specifier · class A commercial · minimal geometric · architectural concrete + warm bronze" 3

echo "[done] 10 briefs queued · 30 designs total"