> ## Documentation Index
> Fetch the complete documentation index at: https://smallestai-ff1e543d.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Credentials & Access

> License keys and registry credentials for TTS Docker deployment

## Required Credentials

Before installation, obtain the following from Smallest.ai:

<AccordionGroup>
  <Accordion title="License Key" icon="key">
    Your unique license key for validation

    Contact: **[support@smallest.ai](mailto:support@smallest.ai)**
  </Accordion>

  <Accordion title="Container Registry Access" icon="docker">
    Credentials to pull Docker images:

    * Registry URL: `quay.io`
    * Username
    * Password
    * Email

    Contact: **[support@smallest.ai](mailto:support@smallest.ai)**
  </Accordion>

  <Accordion title="Model URLs" icon="download">
    Download URLs for TTS models (if required)

    Contact: **[support@smallest.ai](mailto:support@smallest.ai)**
  </Accordion>
</AccordionGroup>

## Login to Container Registry

Once you have your credentials, authenticate with the registry:

```bash theme={null}
docker login quay.io -u <username> -p <password>
```

## Environment Variables

You'll need to set these in your deployment:

```bash theme={null}
export LICENSE_KEY="your-license-key"
export QUAY_USERNAME="your-username"
export QUAY_PASSWORD="your-password"
```
