# Delivery Date & Time Shopify app: scheduling for Shipping / Local Delivery / Store Pickup, with date-time slots, capacity intelligence, and **all-plan checkout enforcement** via Cart/Checkout Validation Functions. Read **[PRODUCT_STRATEGY.md](./PRODUCT_STRATEGY.md)** (why) and **[IMPLEMENTATION_PLAN.md](./IMPLEMENTATION_PLAN.md)** (how, phased build order) before making changes. [CLAUDE.md](./CLAUDE.md) holds the non-negotiables for AI-assisted work in this repo. ## Getting started ```sh npm install cp .env.example .env # fill in Shopify app credentials after linking docker compose up -d # local Postgres (5433) + Redis (6380) npx prisma migrate dev npm run dev # shopify app dev — requires `shopify auth login` first ``` Dev uses Postgres, same as prod, since the schema relies on Prisma enums and (from Phase 5 on) array fields that SQLite can't express. `npm run worker` runs the BullMQ worker (jobs/worker.ts) once Phase 4 makes it do anything. ## Commands | Command | Purpose | |---|---| | `npm run dev` | `shopify app dev` — local dev against a dev store | | `npm test` | Vitest unit tests | | `npm run test:e2e` | Playwright E2E | | `npm run lint` / `npm run typecheck` | ESLint / `tsc --noEmit` | | `npx prisma migrate dev` | DB migrations | | `npm run deploy` | `shopify app deploy` — deploy extensions/functions | | `npm run worker` | BullMQ worker (hold-expiry, notifications) | | `npm run test:integration` | Redis/Postgres-backed tests (slot-hold concurrency, booking flow) — needs `docker compose up -d` | ## Status Phase 0 (scaffold & CI) through Phase 4 (enforcement Functions + slot-holds) are complete. See §6 of `IMPLEMENTATION_PLAN.md` for the phased build order and acceptance criteria — next up is Phase 5 (multi-location, zones, rates, auto-assignment). Editing the storefront widget's `extensions/datetime-widget/src/`? Run `npm run build:widget` to rebuild `assets/datetime-widget.js` — it also runs automatically before `npm run dev` / `npm run deploy`. **Functions are JavaScript, not Rust** (`extensions/validation-slot/`, `extensions/delivery-customization/`) — no Rust toolchain was available in the environment that built Phase 4, and `IMPLEMENTATION_PLAN.md` §1 explicitly allows JS as a fallback. They (and the widget's Theme App Extension) were hand-scaffolded rather than generated via `shopify app generate extension`, which needs an interactive Partner login. **Before deploying either Function**, run `shopify app function schema` in its directory to pull the authoritative `schema.graphql` for your API version and confirm `src/run.graphql` still matches it — these were written from documented conventions, not validated against a live schema.