Copy This 100% Automatic AI Print On Demand System (Make.com & Printify)
원본 영상: Copy This 100% Automatic AI Print On Demand System (Make.com & Printify)
한 줄 요약
섹션 제목: “한 줄 요약”Google Sheets 체크박스 하나로 AI 이미지 생성 → Google Drive 저장 → Printify 상품 등록까지 100% 자동으로 처리하는 Make.com 시나리오 2개짜리 시스템.
핵심 내용
섹션 제목: “핵심 내용”전체 흐름은 두 개의 라우터 경로로 구성된다.
경로 1: 아이디어 → 이미지 생성
- Google Sheets
ideas탭에 niche 키워드(dogs, cats 등)를 입력하고 D열에 체크박스 삽입 - 체크박스를 체크하면 Make.com Webhook이 트리거됨
- 필터 조건:
value = trueANDcolumn_start = 4ANDsheet name = ideas - ChatGPT(DALL-E 3)로 이미지 생성 — 응답 형식은 image file(URL 아닌 바이너리)
- Google Drive Business 계정에 파일 업로드 (개인 계정은 URL 방식 사용)
- Google Drive에서 공개 공유 링크 생성(anyone with link)
- 결과를
products탭에 행 추가 (web view link, file ID, niche명) - 동일 아이디어로 10장 생성 시: Tools 모듈로
[1,2,3...10]배열 생성 → Iterator로 반복
경로 2: 이미지 → Printify 상품 등록
products탭 D열 체크박스 체크 시 트리거- 필터 조건:
value = trueANDcolumn_start = 4ANDsheet name = products - ChatGPT Vision(GPT-4o mini)으로 이미지 분석 → JSON 형식으로 title/description 생성
- Parse JSON 모듈로 파싱 (백슬래시·백틱 제거를 위해 replace 함수 중첩 적용)
- Printify에 이미지 업로드 (web content link 사용)
- Printify
List Variants모듈로 전체 variant 목록 조회 (limit 제거 → 약 495개) - Array Aggregator로 495개를 하나의 배열로 병합
Create Product모듈에서 원하는 variant index 직접 지정 (예: 흰색 S/M/L = index 283/284/285)- 상품 생성 후 Printify에서 Shopify·Etsy·Amazon·eBay 등으로 수동 push
전술·요소
섹션 제목: “전술·요소”| 항목 | 설정값 / 비고 |
|---|---|
| 이미지 크기 | 1024×1024 |
| DALL-E 3 응답 형식 | image file (서버 URL은 수일 내 삭제됨) |
| Google Drive 필요 계정 | Business 계정 (Google Workspace ~$7/월) |
| Printify 이미지 업로드 | web content link 사용 (share link는 자동 다운로드 안 됨) |
| 상품 가격 단위 | cents (예: $10 = 1000) |
| 반복 생성 시 모듈 구성 | Set Variable(배열) → Iterator → 이미지 생성 → Drive 저장 → Sheets 기록 |
| JSON 정제 | replace 함수 2중 중첩으로 ```json · ``` 제거 |
| variant 선택 | Array Aggregator 결과에서 array[283] 식으로 index 직접 참조 |
| 상품 이미지 배치 | x=0.5, y=0.5, scale=1, angle=0 (0~1 범위) |
수치·사례
섹션 제목: “수치·사례”- 본인 테스트 기준 variant 전체 조회 시 약 495개 반환 (Gildan Unisex Heavy Cotton T 기준)
- Iterator 없이 Create Product 실행 시 495개 별도 상품이 생성됨 (6시간 소요 추정)
- 흰색 S/M/L variant는 index 283·284·285에 위치 (다운로드한 output bundle CSV에서 확인)
도구·워크플로
섹션 제목: “도구·워크플로”사용 도구
- Make.com (시나리오 구성, Webhook, Router, Iterator, Array Aggregator)
- Google Sheets + Make for Google Sheets 애드온 (Webhook URL 연결)
- Google Drive Business (이미지 영구 저장)
- OpenAI / DALL-E 3 (이미지 생성), GPT-4o mini Vision (title/description 생성)
- Printify (POD 상품 관리 및 스토어 연동)
- Stability AI (언급: 기존 이미지 클론 생성 대안)
프롬프트 패턴 (이미지 생성)
Please generate me an image of a [niche] cartoon design that I can use for my t-shirt.Make sure it's really cool and eye-catching.Please only include a design — do not include the T-shirt or anything else.It should be a PNG with a transparent background.프롬프트 패턴 (Vision → JSON)
Please generate me a title and description of this image for my eCommerce store.The output should be JSON:{"title": "...", "description": "..."}JSON 정제 (Make.com functions)
replace(replace(result, "```json", ""), "```", "")