1. Clone the Template

Start with our open-source template — no need to build from scratch.

The Template Repository

We've open-sourced the complete stack at:

github.com/eastsidehealthcare/made-with-claw

What's Included

Option A: Fork the Repository (Recommended)

Forking keeps a connection to the original repo, making it easy to pull updates.

  1. Go to github.com/eastsidehealthcare/made-with-claw
  2. Click the Fork button (top right)
  3. Choose your account or organization
  4. Optionally rename the repo to match your project

Option B: Use as Template

If you want a completely independent copy with no fork relationship:

  1. Go to the repository
  2. Click CodeDownload ZIP
  3. Extract and push to your own new repository

Or use the GitHub CLI:

# Create a new repo from the template
gh repo create my-site --template eastsidehealthcare/made-with-claw --private

# Or clone directly  
git clone https://github.com/eastsidehealthcare/made-with-claw.git my-site
cd my-site
rm -rf .git
git init
git remote add origin git@github.com:your-org/my-site.git

Verify Your Clone

After cloning/forking, you should have:

my-site/
├── .eleventy.js          # 11ty config
├── amplify.yml           # Amplify build settings
├── package.json
├── docs/
│   └── SEO-GUIDELINES.md # SEO checklist
└── src/
    ├── _data/            # Site config
    ├── _includes/        # Layouts
    ├── assets/           # CSS, images
    └── *.njk             # Pages

Test Locally (Optional)

# Install dependencies
npm install

# Start dev server
npm run dev

# Open http://localhost:8080