Build migrated content sets for Bug Bashes

The following content sets are available for pre-migration testing:

Local directory structureΒΆ

Assuming the following directory structure:

{GitHub_Repo_Dir}/
β”œβ”€β”€ tools/
β”‚   β”œβ”€β”€ docs-builder-mac-arm64.zip
β”‚   └── docs-builder
β”œβ”€β”€ elasticsearch.md
β”œβ”€β”€ observability-docs.md
└── kibana.md

You can build migrated content sets on a Mac by running the following commands.

Tip

For other systems, see Contribute locally

# move to GitHub dir
cd {GitHub_Repo_Dir}

# clone req'd repos
git clone https://github.com/elastic/elasticsearch.md.git
git clone https://github.com/elastic/observability-docs.md.git
git clone https://github.com/elastic/kibana.md.git

# move back to GitHub dir
cd {GitHub_Repo_Dir}
mkdir tools
cd tools

# mac-specific
curl -LO https://github.com/elastic/docs-builder/releases/latest/download/docs-builder-mac-arm64.zip
unzip docs-builder-mac-arm64.zip

# Build ES Guide
./docs-builder serve -p ../elasticsearch.md/docs

# Build Obs Guide
./docs-builder serve -p ../observability-docs.md/docs

# Build Kib Guide
./docs-builder serve -p ../kibana.md/docs