Skip to content
Draft
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
25 changes: 25 additions & 0 deletions docs/docs/getting_started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,31 @@
docker-compose up -d ingestion read
```

### Windows notes

The same stack can be started from PowerShell when Docker Desktop is running.
Use the current Compose subcommand spelling shown below:

```powershell
docker compose up -d mongodb neo4j postgres
docker compose up -d core
docker compose up -d ingestion read
```

Before starting the services, confirm that Docker Desktop's Linux engine is
running. `docker compose config --quiet` can validate the Compose file without
starting containers. The repository's `run_e2e.sh` script is POSIX shell
syntax, so run it from WSL or Git Bash rather than native PowerShell:

```bash
cd opengin/tests/e2e
bash ./run_e2e.sh
```

Go 1.19+ and Ballerina are also required by the CORE and API services. They
must be installed separately on Windows and available on `PATH` before using
the non-container development commands.

### Test the System

**Run E2E tests**
Expand Down
Loading