# Drape AI

**Drape AI** is an AI-powered virtual try-on platform for independent clothing
brands. A shopper uploads one full-body photo and can then see how a garment
*fits, drapes, and moves* on their own body before they buy — and independent
brands get a try-on-enabled storefront, an embeddable widget, and in-store QR
discovery on their own Drape subdomain.

> **Live positioning:** *"TRY ON THE CULTURE."* — *"Check your fit before you commit."*
> Three pillars: **AI-powered try-on · Independent brands · Your data stays private.**

This site is the single engineering-and-product home for the entire
**Drape-AI-LLC** org: the mobile app, the FastAPI backend, the marketing site, and
the brand and admin web portals.

## Relevant links

| Surface | Link | What it is |
|---|---|---|
| Marketing site | [www.drape.to](https://www.drape.to) | Consumer landing + waitlist |
| For brands | [www.drape.to/for-brands](https://www.drape.to/for-brands) | Brand pitch, plans, pricing |
| Waitlist | [www.drape.to/download](https://www.drape.to/download) | Consumer early-access signup |
| Brand portal | [brand.drape.to](https://brand.drape.to) | Seller dashboard ([apply](https://brand.drape.to/apply) · [login](https://brand.drape.to/login)) |
| Admin | [admin.drape.to](https://admin.drape.to) | Internal ops dashboard |
| Docs | [docs.drape.to](https://docs.drape.to) | This site (Amplify custom domain) |
| GitHub org | [github.com/Drape-AI-LLC](https://github.com/Drape-AI-LLC) | All five repositories |
| Support | support@drape.to | Support inbox |

:::note[Canonical hosts]
Use **`www.drape.to`** for marketing pages — the apex `drape.to` currently 404s on
sub-paths. The brand portal is **`brand.drape.to`** (singular). No App Store /
Google Play link is public yet — the consumer app is waitlist-only.
:::

## The org at a glance

Five repositories, four live product surfaces plus this docs site, **two
backends**.

```mermaid
graph TB
    subgraph "Clients"
        App["Drape- / frontend<br/>Expo mobile app"]
        Mkt["Drape-Marketing<br/>www.drape.to"]
        Brand["Drape-brand<br/>brand.drape.to"]
        Admin["Drape-admin-v1<br/>admin.drape.to"]
    end
    subgraph "Backends"
        MongoAPI["Drape- / backend<br/>Mongo FastAPI on Render"]
        PgAPI["Drape- / backend-postgres<br/>ECS Fargate api.drape.to"]
    end
    subgraph "Data and AI"
        Mongo[("MongoDB")]
        PG[("RDS PostgreSQL")]
        Redis[("Upstash Redis")]
        Supa[("Supabase Storage")]
        AI["Fashn.ai · fal.ai"]
        Stripe["Stripe Connect"]
    end

    App --> MongoAPI
    Mkt --> PgAPI
    Brand --> PgAPI
    Admin --> PgAPI
    MongoAPI --> Mongo
    MongoAPI --> Redis
    MongoAPI --> Supa
    MongoAPI --> AI
    MongoAPI --> Stripe
    PgAPI --> PG
    PgAPI --> Supa
    PgAPI --> Stripe
```

The **mobile app** talks to the Mongo FastAPI on Render. The **web tier** talks
to the Postgres API on ECS (`api.drape.to`). See
[The Repositories](./repositories/overview.md) for what each repo owns and where
it deploys, and [Infrastructure](./architecture/infrastructure.md) for the AWS
footprint.

## Product state

| Signal | Status |
|---|---|
| Consumer app | Pre-launch — **waitlist only** (iOS + Android promised) |
| Brand portal | **Live** — applications and login open at brand.drape.to |
| Admin | Live (internal, auth-gated) |
| Brand plans | **Freemium** $0 (10%) · **Basic** $19.99/mo (8%) · **Premium** $29.99/mo (6%); Grandfathered admin-only |
| Anchor brands | PRK, HARDWAY Snowboards, Deep Six Worldwide |
| Scale (internal) | ~11 users · 7 brands · 18 products |

The brand side is further along than the consumer side: brands can apply, onboard,
and manage a catalog today, while the consumer app is still gated behind a
waitlist.

## How these docs are organized

- **[Product & Features](./product/overview.md)** — the shopper app, the brand
  offering and plans, and the drape.to funnel (product-manager lens).
- **[Architecture](./architecture/system-overview.md)** — system diagrams across
  every surface: backend, mobile app, web portals, the AI pipeline, the data
  model, security, hosting, and the [AWS system map](./architecture/aws-system-map.md).
- **[The Repositories](./repositories/overview.md)** — the five repos, their
  stacks, and their deploy targets.
- **[Code Audit](./audit/overview.md)** — unused libraries and tech debt worth
  paying down.
- **[Shipping](./shipping/overview.md)** — App Store, Google Play, and the AWS
  Amplify web deploys.

:::info[Written for people and agents]
Every page carries a one-line `description`, and the build emits an `llms.txt`
index plus a Markdown twin of each page — so a coding agent can read this
architecture, not skip an opaque diagram.
:::
