> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ringee.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Get started with Ringee installation

## Self-hosted installation options

Choose the best option for your use case:

<CardGroup cols={2}>
  <Card title="Docker Compose" icon="docker" href="/installation/docker-compose">
    Recommended for **production** — everything in one command
  </Card>

  <Card title="Development" icon="code" href="/installation/development">
    Recommended for **developers** — full local setup
  </Card>
</CardGroup>

## Other options

<CardGroup cols={2}>
  <Card title="Docker (standalone)" icon="docker" href="/installation/docker">
    Run individual containers from the command line
  </Card>
</CardGroup>

## Quick start with Docker Compose

If you just want to get Ringee running as fast as possible:

```bash theme={null}
git clone https://github.com/ringee-io/ringee-app.git
cd ringee
cp .env.example .env   # Fill in your API keys
docker-compose -f docker-compose.app.yml up --build -d
```

Then open:

* **Admin frontend** → [http://localhost:4200](http://localhost:4200)
* **Consumer frontend** → [http://localhost:4201](http://localhost:4201)

<Warning>
  You **must** configure your API keys in the `.env` file before running. See the [Configuration Reference](/configuration/reference) for details on each variable.
</Warning>

## Next steps

<CardGroup cols={2}>
  <Card title="Configuration Reference" icon="gear" href="/configuration/reference">
    Learn about all environment variables
  </Card>

  <Card title="Telnyx Setup" icon="phone" href="/providers/telnyx">
    Configure your telephony provider
  </Card>
</CardGroup>
