antrix.dev
Ship Your Product · $79

Your Domain & Professional Email

Register your domain, set up DNS, and configure professional email with Google Workspace.

Reading this alone?

Do it with peers — bi-weekly calls, $29/mo founding.

Join →

What it does

Your domainis your identity online — it's the address people type to find you and the name that appears in every email you send. This guide covers registering a domain, pointing it to Vercel for hosting, setting up professional email with Google Workspace, and configuring the authentication records (SPF, DKIM, DMARC) that keep your emails out of spam folders.

DNS is the routing system that connects your domain to every service in your stack. It tells the internet where your website lives, where to deliver your email, and which servers are authorized to send messages on your behalf. Email authentication records(SPF, DKIM, DMARC) are the proof that you're legitimate — without them, email providers have no way to distinguish your messages from spam or phishing attempts.

Why we use it

A custom domain builds trust instantly. yourname.com looks professional. hello@yourname.combuilds credibility with customers in a way that a personal Gmail never will. Proper DNS setup ensures your site loads fast through Vercel's edge network, and email authentication records ensure your messages actually reach inboxes instead of landing in spam.

Every other service in your stack depends on your domain. Vercel serves your site on it. Resend sends transactional email from it. Google Workspacehandles incoming mail for it. Get this right once and everything downstream just works — get it wrong and you'll be debugging DNS issues across every service you set up.

Setup checklist

1

Choose your domain name

Keep it short, memorable, and easy to spell. Check availability on Namecheap, Cloudflare Registrar, or GoDaddy. .comis the standard expectation for most customers — it's what people type by default. .devworks well for tech products. Avoid hyphens and numbers — they're hard to communicate verbally and easy to mistype.

Budget about $12/yearfor a standard .com. Premium domains cost more but rarely justify the price for a new product. If your exact name is taken, try adding "get" or "use" as a prefix (getproductname.com, useproductname.com) before resorting to a different TLD.

2

Register the domain

Namecheap and Cloudflare Registrar are the cheapest options — both charge at-cost with no markup. GoDaddy works but tends to upsell aggressively during checkout. Whichever registrar you choose, enable WHOIS privacy(usually free) so your personal address and phone number aren't publicly visible in domain lookup databases.

Turn on auto-renewalimmediately so you don't accidentally lose your domain when it expires. Expired domains get snatched by squatters within hours. Save your registrar login credentials somewhere secure — a password manager, not a sticky note. Losing access to your registrar account is one of the hardest problems to recover from.

3

Point DNS to Vercel

In your registrar's DNS settings, add two records. An A record with the host set to @ (your root domain) pointing to 76.76.21.21 — this is Vercel's IP address. Then a CNAME record with the host set to www pointing to cname.vercel-dns.com.

Next, go to your Vercel project: Settings > Domains > Add your domain. Vercel will check your DNS records, verify ownership, and provision an SSL certificateautomatically — no extra configuration needed. DNS propagation typically takes 5–60 minutes, but can occasionally take up to 48 hours. You can check propagation status at dnschecker.org.

4

Configure www redirect

In Vercel's domain settings, set either www or non-www as your primary domain. Vercel handles the redirect from one to the other automatically. Most people prefer non-www ( yourdomain.com) because it's shorter and cleaner. Pick one and be consistent — having both versions active without a redirect splits your SEO authority between two URLs.

5

Set up Google Workspace

Go to workspace.google.com and sign up for the Business Starter plan ($7/mo). This gives you professional email, Google Drive, Calendar, and Meet under your domain. Enter your domain name during the setup flow — Google will guide you through verifying ownership.

Here's the key insight: you only need one Google Workspace subscription ever. When you launch additional products with different domains later, you add those domains as aliases to your existing account. All mail routes to one inbox. You don't pay for extra seats or extra subscriptions unless you hire people who need their own accounts.

6

Configure Google Workspace DNS records

Google provides you with MX recordsto add at your registrar. These tell email servers around the world where to deliver mail addressed to your domain. You'll typically add 5 MX recordswith different priority values — this creates redundancy so email delivery doesn't fail if one server is down.

Google also provides a TXT verification record that proves you own the domain. Add this to your DNS as well. Once the MX records propagate (usually 5–30 minutes), send yourself a test email from a different account to confirm delivery is working. Check both the inbox and spam folder.

7

Set up email aliases

In Google Admin > Users > your account > Email aliases, add aliases for the different addresses you want to use: hello@, support@, billing@. All of these route to your single inbox. No extra cost, no extra accounts.

When you reply to an email, Gmail lets you choose which "from" addressto send from. A customer who emails support@yourdomain.com gets a reply from that same address, not your personal account. Later, when you add additional domains, you can add those as aliases too — hello@domain1.com, support@domain2.com, all from one inbox, one subscription.

8

Configure SPF record

SPF (Sender Policy Framework) tells receiving email servers which mail servers are authorized to send email on behalf of your domain. Without it, anyone could send email pretending to be you, and legitimate email from your domain gets flagged as suspicious.

Add a TXT record at your registrar with the host set to @ and the value: v=spf1 include:_spf.google.com include:amazonses.com ~all. The include:_spf.google.com part authorizes Google Workspace to send on your behalf. The include:amazonses.com part authorizes Resend (which uses Amazon SES under the hood) for transactional emails. The ~all tells receivers to soft-fail anything not from those servers.

9

Configure DKIM

DKIM (DomainKeys Identified Mail) adds a cryptographic signatureto every email you send. Receiving servers use this signature to verify the email hasn't been tampered with in transit and actually came from your domain. It's like a wax seal on a letter.

In Google Workspace, go to Admin > Apps > Google Workspace > Gmail > Authenticate email. Click Generate new record. Google gives you a TXT record with a long string of characters — this is your public DKIM key. Add it to your DNS at the host Google specifies (usually google._domainkey). After DNS propagation, go back to Google Admin and click Start authentication.

10

Configure DMARC

DMARC (Domain-based Message Authentication, Reporting, and Conformance) ties SPF and DKIM together. It tells receiving servers what to dowith emails that fail SPF and DKIM checks — let them through, quarantine them, or reject them outright. It also sends you reports so you can monitor who is sending email using your domain.

Add a TXT record with the host set to _dmarc and the value: v=DMARC1; p=none; rua=mailto:dmarc@yourdomain.com. Start with p=none(monitor only) — this collects reports without affecting delivery. After a few weeks of clean reports confirming only your legitimate servers are sending email, change to p=quarantine(suspicious emails go to spam). Once you're fully confident, move to p=reject (unauthorized emails are blocked entirely).

Pro tips

Use one registrar for everything— register all your domains with the same registrar for easier management. Cloudflare Registrar offers at-cost pricing with no markup.

Set up a group alias early— create a Google Workspace group alias (e.g., team@yourdomain.com) even as a solo founder. It lets you add collaborators later without changing public-facing addresses.

Use Cloudflare DNS— even if you registered elsewhere, Cloudflare's DNS is the fastest globally and offers free DDoS protection. Just change your nameservers at the registrar.

Keep a DNS records spreadsheet— when you add services (Resend, Vercel, Google), document every record you added and why. Future you will thank you when debugging deliverability issues.

DNS records summary

DNS Records Summary for yourdomain.com:

# Vercel (hosting)
A     @     76.76.21.21
CNAME www   cname.vercel-dns.com

# Google Workspace (email)
MX    @     1 aspmx.l.google.com
MX    @     5 alt1.aspmx.l.google.com
MX    @     5 alt2.aspmx.l.google.com
MX    @     10 alt3.aspmx.l.google.com
MX    @     10 alt4.aspmx.l.google.com
TXT   @     v=spf1 include:_spf.google.com include:amazonses.com ~all

# Email authentication
TXT   google._domainkey   (DKIM key from Google Admin)
TXT   _dmarc              v=DMARC1; p=quarantine; rua=mailto:dmarc@yourdomain.com

# Resend (transactional email)
TXT   (records provided by Resend during domain verification)

AI prompt to get started

I just registered [yourdomain.com]. Help me set up all the DNS records I need for: 1) Vercel hosting (A + CNAME), 2) Google Workspace email (MX + verification), 3) SPF, DKIM, and DMARC for email deliverability, 4) Resend domain verification. Give me the exact records to add.

Mistakes to avoid

  • Not enabling WHOIS privacy — your personal address and phone number will be public in domain lookup databases
  • Skipping email authentication (SPF/DKIM/DMARC) — your emails will land in spam or get rejected entirely by major providers
  • Buying domains before validating your idea — a domain is cheap, but the habit of buying-before-validating is expensive and distracting
  • Setting DMARC to p=reject immediately — start with p=none to monitor, then p=quarantine, then p=reject after you’re confident everything is clean
  • Not saving registrar credentials securely — losing access to your domain registrar is a nightmare that can take weeks to resolve
  • Using your registrar’s built-in email hosting — it’s always worse than Google Workspace in reliability, spam filtering, and features

Reading this and want to actually do it with others?

The community is bi-weekly live calls, async accountability, and a group of builders shipping in parallel. Founding seats are $29/mo.

The Community — Coming Soon

For AI-first operators who actually build the thing.

Builders, consultants, founders, freelancers — anyone whose income comes from shipping real work, not from selling courses about shipping.

AI isn't going to make you money. Products do. Clients do. Real businesses do. But AI is the unfair advantage — when you wire it into how you build, sell, and serve, you move 10x faster than people still doing it by hand.

Who it's for

Beginners

Learning AI from people actually using it, not just teaching it.

Builders

Ready to automate workflows — yours or your clients'.

Operators

Senior, deep in production, looking for peers and leverage.

You have real skills. You want AI as an unfair advantage on real work — building something of your own, leveling up at your job, or both — not another set of videos to watch.

What's inside

Direct access — me + the network

Bi-weekly Google Meet calls where we actually work. DMs and posts with me and other operators when you're mid-build and stuck.

  • Bi-weekly live calls — builds, Q&A, teardowns
  • Architecture + payment reviews on your code
  • Peer network of operators who actually ship
  • Paid client referrals when I'm overbooked

The production agentic stack

Everything I run on real client work and my own products — installed in your environment, not just shown in a video.

  • Antrix OS — the control room for your agent fleet
  • Installers: Ship Your Product + Run the Machine
  • ax-* skill packs (audit, deliver, simplify, content, more)
  • Multi-agent code review across parallel worktrees
  • Scheduled jobs, overnight pipelines, dual-AI planning
  • Setup library: Stripe, Supabase, Vercel, Resend

Antrix OS — the agent dashboard

Antrix OS — agent fleet dashboard

The control room I actually run my work from — every project, agent, skill, schedule, machine, and secret in one place. Members get the codebase.

Why this one is different

Most hosts make content.
I make products.

The platform doesn't matter — Skool, Circle, Discord, Whop, whatever. The problem is the host.

Most paid-community founders aren't shipping anything outside of the community itself. Their whole business is selling you the community.

I'm in production every day. The people I want next to me are too.

We level up together.

Most communities

  • Revenue IS the membership fee
  • Main output: content about the community
  • You learn from someone who only sells communities
  • Growth metric: new members

This community

  • Revenue is client work + products. Community is a side of it.
  • Main output: shipped code, deployed products, served clients
  • You learn from someone in production every single day
  • Growth metric: what members are actually shipping

Waitlist

Open · first cohort

Get in before the price moves.

Founding pricing exists for the first cohort. When it fills, the next one pays more — and joins behind it. Names get pulled in order.

  • Founding price locked: $29/mo
  • Bi-weekly live calls + brainstorms
  • Direct access: me + operator peers

Work with me directly

Senior engineering, paired with agentic AI.

I take a handful of clients each quarter. Direct work on your codebase, your stack, your business. No agency. No junior handoffs. You hire me, you get me.

I build with you

Pair sessions where we ship the product, the agent, or the integration that's been blocking you.

I wire AI into your business

Agentic workflows, multi-agent pipelines, and scheduled jobs that turn AI from a chat window into 10x leverage on actual revenue work.

I review what you shipped

Architecture, AI usage, payments. I'll tell you what's worth keeping, what to rip out, and what to ship next.

I set you up, you take it from there

Sometimes you don't need me to run it. You need someone in the room while you do. I'll show you the system.

Specialty — payments

Hundreds of millions processed across subscriptions, marketplaces, and migrations. If your product touches money, that's where I help most. Webhook reliability, marketplace splits, billing architectures — the kind of work where shipping wrong costs you money, not just time.

Tell me what you're building.

I reply within 24 hours.