The Playbook unlocked traqqit.com →

Module 0 · ~20 min · start here

🧰 Set up your workshop

Never shipped anything before? Perfect — start here. You'll leave with an editor, an AI that codes, your own server, and a domain, all wired together. You do this once.

💡 Already have VS Code + Claude Code + a server? Skim this and jump to Module 1. Everyone else: 20 minutes and you'll have a real workshop.

⚡ The 60-second version

In a hurry? This is the entire setup. Every step is expanded (with the "why") below.

  1. Install VS Code → add the Claude Code extension → sign in (needs a Claude Pro/Max plan).
  2. Buy a Hostinger KVM VPS, choose Ubuntu, note its IP.
  3. Get a Hostinger API token (hPanel → API), then run:
    claude mcp add hostinger --env APITOKEN=… -- npx -y hostinger-api-mcp
  4. Register or point a domain at Hostinger.
  5. Keep the AI lazy — open big requests with "smallest version that works."

That's the whole workshop. Want the why, the exact clicks, and what each step looks like? Keep reading. ↓

What you're setting up (the mental model)

Four pieces. That's the whole workshop:

Connect these four once. Then you never think about them again — you just build.

1

Install VS Code

Go to code.visualstudio.com, download the version for your computer (Windows / Mac), and install it. Open it. That's it — it's a text editor with superpowers, and it's where everything else lives.

2

Install Claude Code and sign in

Claude Code is how you talk to the AI. Easiest path, right inside VS Code:

  1. Click the Extensions icon in VS Code's left bar (the stack of squares).
  2. Search "Claude Code" and click Install.
  3. A Claude panel appears. Click Sign in and log in with your Claude account.

Prefer the terminal? You can install the command-line version instead:

npm install -g @anthropic-ai/claude-code
claude        # run it from any project folder

Either way, you need a Claude plan — a Claude Pro or Max subscription (or API credits) powers it. Set that up at claude.ai if you haven't.

💡 New to terminals? In VS Code, open one with View → Terminal (or Ctrl+`). Most of the "scary" commands in this course are things you paste, and Claude hands them to you. You'll be fine.

3

Turn on "lazy mode" (so the AI doesn't over-build)

Left alone, an AI builds you a mansion when you asked for a shed. Keeping it lazy is the whole method (that's Module 2) — set the default now:

We go deep on this in Module 2. For now, just know the knob exists and it's on.

4

Get a Hostinger VPS (your server)

This is the box your apps live on — one box for your whole fleet.

  1. Go to hostinger.com → VPS hosting. Pick a KVM plan (KVM 1 or 2 is plenty to start).
  2. When it asks for an operating system, choose a plain Ubuntu template (or "Ubuntu with Docker" if offered — saves you a step in Module 4).
  3. Set a root password (and/or add an SSH key — Claude can generate one for you). Then note your VPS's IP address; you'll need it constantly.

That's a real computer on the internet, yours, running 24/7.

💡 "SSH" just means running commands on that remote box from your terminal. Test it: ssh root@YOUR_VPS_IP, enter the password. If it connects, you're in. Module 4 does the rest.

5

Connect the Hostinger MCP to Claude Code (the magic)

An MCP is a plug-in bridge that gives Claude new powers. The Hostinger MCP lets Claude manage your Hostinger account directly — add a DNS record, check your VPS, register a domain — by you asking in plain English. No hunting through a control panel.

  1. Get a Hostinger API token. In Hostinger's hPanel, open your account settings and find API → generate a token. Copy it.
  2. Add the MCP to Claude Code. One command in your terminal:
claude mcp add hostinger --env APITOKEN=YOUR_HOSTINGER_TOKEN -- npx -y hostinger-api-mcp

Or add it to your Claude Code MCP config by hand — the shape looks like this:

{
  "mcpServers": {
    "hostinger": {
      "command": "npx",
      "args": ["-y", "hostinger-api-mcp"],
      "env": { "APITOKEN": "YOUR_HOSTINGER_TOKEN" }
    }
  }
}

Restart / reconnect Claude Code, then test it — ask: "List my Hostinger VPSs" or "What DNS records does mydomain.com have?" If Claude answers with your real account data, you're wired.

EXAMPLE — YOU TEST THE CONNECTION BY JUST ASKING:

Claude Code
YouList my Hostinger VPSs.
ClaudeYou have 1 VPS: srv-01 — Ubuntu 24.04, IP 203.0.113.10, status running.↳ hostinger-vps · get virtual machines

This is exactly how the fleet's DNS gets done. Every app's domain record is added by asking Claude, and the Hostinger MCP makes the change. In Module 4 you'll literally say "add an A record for myapp pointing at my VPS IP" and it's done — no panel, no waiting.

⚠️ Treat your API token like a password. It's a secret — never paste it into a public repo, a webpage, or a chat. It lives only in your MCP config, on your machine. (Hostinger's MCP setup page has the current exact steps if the command above ever changes.)

6

Get a domain (an address for your apps)

Your apps need a name people can type.

You're ready ✅

That's the whole workshop, and you never set it up again. Now the fun part — the loop.