blob: a256b7d51e683e4c0b704e9a32fc25dde37ce72e [file]
# Quick-start commands shown on the /docs landing "Get started" section.
# Two distinct flows: run the Showcase demo, or install SkyWalking itself.
# Commands mirror the docs (setup/backend/backend-docker) and the showcase repo;
# keep them in sync with content/quickstart-docker.{sh,ps1}.
showcase:
title: Run the Showcase
blurb: A demo music application pre-wired with distributed tracing, metrics, logs and profiling — see SkyWalking end-to-end before installing anything.
badge: Recommended for newcomers
docsLabel: Showcase docs
docsLink: /docs/skywalking-showcase/latest/readme/
tabs:
- os: macOS / Linux / WSL
lang: bash
code: |
git clone https://github.com/apache/skywalking-showcase
cd skywalking-showcase
make deploy.docker
# → open http://localhost:8080
skywalking:
title: Run SkyWalking
blurb: Start the storage, OAP server and UI with a one-liner. Requires Docker; you'll be prompted to choose a storage backend.
badge: Install the platform
docsLabel: Backend setup docs
docsLink: /docs/main/latest/en/setup/backend/backend-docker/
tabs:
- os: Linux / macOS / WSL
lang: bash
code: |
bash <(curl -sSL https://skywalking.apache.org/quickstart-docker.sh)
- os: Windows (PowerShell)
lang: powershell
code: |
Invoke-Expression ([System.Text.Encoding]::UTF8.GetString((Invoke-WebRequest -Uri https://skywalking.apache.org/quickstart-docker.ps1 -UseBasicParsing).Content))