﻿---
title: Spin up the Elastic Stack
description: The elastic-package tool provides a quick way to spin up the Elastic Stack. The following command deploys Elasticsearch, Kibana, and the Elastic Package...
url: https://www.elastic.co/elastic/docs-builder/docs/3028/extend/integrations/build-spin-stack
products:
  - Elastic integrations
---

# Spin up the Elastic Stack
The [`elastic-package`](https://www.elastic.co/elastic/docs-builder/docs/3028/extend/integrations/elastic-package) tool provides a quick way to spin up the Elastic Stack. The following command deploys Elasticsearch, Kibana, and the Elastic Package Registry:
```bash
elastic-package stack up -v -d
```

To view a list of the available options for this command, run:
```bash
elastic-package stack up -h
```

When complete, go to [http://localhost:5601](http://localhost:5601) and log in with the username `elastic` and the password `changeme`.
<tip>
  Development time over? Tear down the Elastic Stack with:
  ```bash
  elastic-package stack down
  ```
</tip>