BMAD-METHOD/docs/learn-wds/module-02-installation-setup/lesson-04-clone-and-wds/checklist.md

1.7 KiB

Lesson 04: Repository Cloning & WDS Integration - Quick Checklist

⏱️ 15-20 minutes


Create Projects Folder

In Cursor terminal (Ctrl+** or **Cmd+):

# Windows
mkdir C:\Projects
cd C:\Projects

# Mac/Linux
mkdir ~/Projects
cd ~/Projects
  • Projects folder created

Clone Your Project

  • Go to your repo on GitHub → Click "Code" → Copy URL
  • In terminal: git clone [paste-url-here]
  • (If prompted: Install Git → Click "Install")
  • "done" message

Open Project in Cursor

  • FileOpen Folder
  • Select your project folder
  • Project in sidebar

Clone WDS

In terminal:

cd ~/Projects  # or cd C:\Projects
git clone https://github.com/whiteport-collective/whiteport-design-studio.git
  • WDS cloned

Add WDS to Workspace

  • FileAdd Folder to Workspace
  • Select whiteport-design-studio folder
  • Click "Add"
  • Both folders in sidebar

Create Docs Structure

In terminal (in YOUR project folder):

cd ~/Projects/your-project-name  # YOUR project!

# Mac/Linux
mkdir -p docs/{1-project-brief,2-trigger-mapping,3-prd-platform,4-ux-design,5-design-system,6-design-deliveries,7-testing,8-ongoing-development}

# Windows (if above doesn't work)
mkdir docs
cd docs
mkdir 1-project-brief 2-trigger-mapping 3-prd-platform 4-ux-design 5-design-system 6-design-deliveries 7-testing 8-ongoing-development
cd ..
  • 8 folders in docs/

Next Step

Everything cloned and ready!

→ Lesson 05: Mimir Activation


Need more detail? See full lesson explanation