MEMEXEDOT MIRROR™ · ELARRI.AI
ellari-archive · public record · system of record

MEMEXEDOT

memex memory extender · 1945
·
עֵדוּת · edot testimony · witness · record
·
זָכוֹר · zakhor remember · recall

System of record for the Ellari ecosystem — language canon, mythology, and infrastructure documentation. The memory that holds the work.

memexedot.com · /canon

Language Canon

The Aetherion constructed language system, Crown Script visual-phoneme glyphs, Shape Language Alphabet primitives, and all canonical decision records.

memexedot.com · /mythology

Mythology & Doctrine

The MirrorPantheon seven figures, ELE governance doctrine, canonical names registry, and the Shadow Governance Stack.

memexedot.com · /infrastructure

Infrastructure & Logs

Domain registry, R2 inventory, cross-project master log, and operational records. The receipts layer.

memexedot.com · /deposits · memexedot.org

Prior Art Deposits

OSF (Open Science Framework) deposit records. Timestamped prior art documentation. Public-facing IP receipts.

memexedot.com · domain architecture

Memex Domain Matrix

11 memex domains. Three functions: archive, memory layer, aliases. Each TLD serves a different layer of the system.

memexedot.com PRIMARY Archive portal — index, browse, canon home
memexedot.ai AI LAYER Ask-the-archive AI query interface (Phase 2 build)
memexedot.app TOOLS Interactive tools — Aetherion analyzer, SLA reader
memexedot.dev DEVELOPER Technical docs, GitHub mirror, API reference
memexedot.io API/INFRA SealForge endpoint, MIRROR™ /verify route
memexedot.org PUBLIC RECORD Institutional — OSF deposit front-end, academic record
memexzakhor.com MEMORY CFUR records, ritual completion witness archive, personal sovereignty log
edotmemex.com 301 ALIAS → memexedot.com
edot-memex.com 301 ALIAS → memexedot.com
memex-edot.com 301 ALIAS → memexedot.com
memex-zakhor.com 301 ALIAS → memexzakhor.com (not .com — zakhor is its own layer)
cloudflare pages · deployment

Deploy to Cloudflare Pages

Step 1 — Connect repo to Cloudflare Pages
Cloudflare Dashboard → Pages → Create a project → Connect to Git
# In Cloudflare Pages:
Repository:     TrueFormCoder/ellari-archive
Project name:   memexedot
Branch:         main
Build command:  (blank — static files, no build needed)
Output dir:     /  (or /public if you add a public folder)
Custom domain:  memexedot.com
Step 2 — Add custom domain (Cloudflare DNS auto-configures)
# Cloudflare Pages Settings → Custom Domains → Add
memexedot.com     → auto-configured CNAME by Cloudflare
www.memexedot.com → 301 → memexedot.com (add in Pages)
Step 3 — 301 redirects for alias TLDs (Cloudflare Workers)
// Worker: deploy to edotmemex.com, edot-memex.com, memex-edot.com
export default {
  async fetch(request) {
    const url = new URL(request.url);
    return Response.redirect(
      'https://memexedot.com' + url.pathname + url.search,
      301
    );
  }
}
Step 4 — Add index.html to repo root (enables Pages to serve it)
# Add to ellari-archive root:
# index.html  → this file (memexedot.com landing page)
# 404.html    → simple "not found" page
# _redirects  → Cloudflare Pages redirect rules

# _redirects file content:
/verify/:code  https://memexedot.io/verify/:code  301
/oracle        https://ellari-vault.ai             301
/vault         https://ellari-vault.com            301