Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ai-memory/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ This section highlights other important aspects of the ElasticGraph project:
- The presence of an `ai_tools/` directory containing `elasticgraph-mcp-server` (a Python-based tool) suggests potential or planned integration with AI/ML model control planes or related functionalities. The exact nature and usage are not fully detailed within the current primary codebase documentation.

- **Ruby and Datastore Versioning**:
- The project specifies Ruby `~> 3.4` as its required version.
- The project supports Ruby 3.4.x and 4.0.x.
- It actively tests against a defined set of Elasticsearch and OpenSearch versions, managed in `config/tested_datastore_versions.yaml` and enforced in the CI pipeline.

### Configuration Management and Schema
Expand Down
6 changes: 3 additions & 3 deletions config/site/src/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ By the end of this tutorial, you'll have a working ElasticGraph instance running
Before you begin, ensure you have the following installed on your system:

- **Docker** and **Docker Compose**
- **Ruby** (version 3.4 or higher)
- **Ruby** (version 3.4.x or 4.0.x)
- **Git**

Confirm these are installed using your terminal:

{% include copyable_code_snippet.html language="shell" code="$ ruby -v
ruby 3.4.2 (2025-02-15 revision d2930f8e7a) +PRISM [arm64-darwin24]
ruby 4.0.0 (2025-12-25 revision 553f1675f3) +PRISM [arm64-darwin25]
$ docker compose version
Docker Compose version v2.32.4-desktop.1
$ git -v
git version 2.46.0" %}

{: .alert-note}
**Note**{: .alert-title}
You don't need these exact versions (these are just examples). Your Ruby version does need to be 3.4.x or greater, though.
You don't need these exact versions (these are just examples). Your Ruby version does need to be 3.4.x or 4.0.x, though.

## Step 1: Bootstrap a new ElasticGraph Project

Expand Down