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
9 changes: 9 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.git
**/target
eval/
.cursor/
*.iml
.idea/
.vscode/
.DS_Store
**/.DS_Store
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM eclipse-temurin:8-jdk

RUN apt-get update && apt-get install -y --no-install-recommends \
maven wget zstd netcat-openbsd \
&& rm -rf /var/lib/apt/lists/*

WORKDIR /estore
COPY . .

RUN ./s install_estore

EXPOSE 1234
CMD ["/bin/bash"]
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,34 @@ is a table of references to objects on the heap, which users can
manipulate the same way as any other object on the heap in their
programs.

## Requirements

- Java 8
- Maven
- wget, zstd, tar, gzip
- `nc` (netcat) for the TCP query demo

We also provide a Docker image with Java 8, Maven, and an installed
eStore repository. Build and run it with:

```bash
docker build -t estore .
docker run --rm -it -p 1234:1234 estore
```

## Install

```bash
./s install_estore
```

This runs dependency checks, downloads test data, and installs
the `estore` Maven module. See
[Getting Started](#getting-started-with-development) for a fuller
local workflow. After install, start the TCP query server with
`./s exec_estore`, then query it with
`echo 'MATCH (n) RETURN n' | nc localhost 1234`.

## Examples

1. Capturing a Java object graph and querying it with Cypher-like syntax.
Expand Down
Loading