Skip to content
Merged
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: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ WORKDIR /workspace

COPY pom.xml ./
COPY src ./src
COPY codegen-gradle ./codegen-gradle
RUN chmod +x /workspace/codegen-gradle/gradlew

RUN mvn -q -DskipTests package

Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ client.activate();
By default, this starts `neo4j` + `guide` (the Java application):

```bash
docker compose up --build -d
docker compose --profile java up --build -d
```

#### Running Neo4j only (for local Java development)
Expand Down Expand Up @@ -445,6 +445,9 @@ docker compose down --remove-orphans
| `NEO4J_VERSION` | `2025.10.1-community-bullseye` | Neo4j Docker image tag |
| `NEO4J_USERNAME` | `neo4j` | Neo4j username |
| `NEO4J_PASSWORD` | `brahmsian` | Neo4j password |
| `NEO4J_HTTP_PORT` | 7474 | Neo4j HTTP port |
| `NEO4J_BOLT_PORT` | 7687 | Neo4j Bolt port |
| `NEO4J_HTTPS_PORT` | 7473 | Neo4j HTTPS port |
| `OPENAI_API_KEY` | (required) | OpenAI API key |
| `DISCORD_TOKEN` | (optional) | Discord bot token |

Expand Down
6 changes: 3 additions & 3 deletions compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ services:
image: neo4j:${NEO4J_VERSION:-2025.10.1-community-bullseye}
container_name: embabel-neo4j
ports:
- "7474:7474" # HTTP
- "7687:7687" # Bolt
- "7473:7473" # HTTPS
- "${NEO4J_HTTP_PORT:-7474}:7474" # HTTP
- "${NEO4J_BOLT_PORT:-7687}:7687" # Bolt
- "${NEO4J_HTTPS_PORT:-7473}:7473" # HTTPS
environment:
- NEO4J_AUTH=${NEO4J_USERNAME:-neo4j}/${NEO4J_PASSWORD:-brahmsian}
- NEO4J_PLUGINS=["apoc"]
Expand Down
Loading