This folder is the user-facing documentation for AXIOM, built as a VitePress site. It explains what AXIOM does and how to use it, from the point of view of everyday users — analysts, reviewers, investigators, and administrators. It is intentionally non-technical: there is nothing here about how the application is built.
The content lives in plain Markdown, so you can read it directly on disk or in your editor:
- Start here:
index.md(home) andguide/index.md("What is AXIOM?"). - New users:
guide/getting-started.mdandguide/concepts.md. - Everything else is under
guide/, with anfaq.mdat the root.
To browse it with navigation and search in your browser:
npm install # first time only
npm run docs:dev # live preview at the printed local URLOther scripts:
npm run docs:build # build the static site
npm run docs:preview # preview the built siteUsers_Documentation/
├─ index.md # home page
├─ faq.md # frequently asked questions
├─ guide/ # the guide, one page per topic
│ ├─ index.md # what is AXIOM?
│ ├─ getting-started.md
│ ├─ concepts.md
│ ├─ navigation.md
│ ├─ projects.md · library.md · watchlists.md
│ ├─ ontology.md · objects.md · catalog.md · entity-resolution.md
│ ├─ graph.md · geospatial.md · analytics.md
│ ├─ alerts-cases.md · rules.md · actions.md · ai.md · reports.md
│ ├─ sources.md · pipelines.md · code-models.md
│ ├─ governance.md · administration.md
│ └─ keyboard-shortcuts.md
└─ .vitepress/config.mts # site navigation & settings