Pick one page
Choose the single most important page on your site. Don't start with the whole site.
Drop that URL into Geordy and generate the formats.
Enable formats
For most sites, start with these three:
Optional next: OG.json, YAML, RSS (.xml), manifest.json, humans.txt. Enable what you'll actually deploy.
Make files accessible
You have two options. Both work — choose based on your situation:
Your files are already hosted at Geordy's address the moment they're generated — no DNS, no configuration needed. Reference them directly from your pages:
Good for getting started quickly, or for sites where adding DNS records isn't practical.
Pick a subdomain and add one A record to your DNS provider. This keeps files under your own domain — better for brand trust and signals.
No wildcard, no TXT, no CNAME needed. Just one A record covers all files for that domain.
Good subdomain choices: ai.yourdomain.com geordy.yourdomain.com data.yourdomain.com
Verify it works
Open one of these URLs in your browser depending on your setup:
If it loads, you're live.
If it doesn't load with Option B: DNS propagation can take a few minutes to an hour.
Add reference tags
On each original page, add <link rel="alternate"> tags in the <head> pointing to the matching Geordy files — using whichever base URL you chose in Step 3.
<!-- Using your own subdomain (Option B) -->
<link rel="alternate"
type="application/ld+json"
href="https://ai.yourdomain.com/about/team.schema.json" />
<link rel="alternate"
type="text/markdown"
href="https://ai.yourdomain.com/about/team.md" />
<!-- Or using Geordy's URL directly (Option A) -->
<link rel="alternate"
type="application/ld+json"
href="https://files.geordy.ai/yourdomain.com/about/team.schema.json" />
<link rel="alternate"
type="text/markdown"
href="https://files.geordy.ai/yourdomain.com/about/team.md" />This is the activation step. Without reference tags, AI systems can't discover the files.