On this page

Save access-key credentials to `~/.tigris/config.json` for persistent use across all commands.

**Alias:** `c`

## Usage

```bash
tigris configure [flags]
t3 c [flags]
```

## Flags

| Name                           | Required | Default                       | Description                     |
|--------------------------------|----------|-------------------------------|---------------------------------|
| `--access-key`, `-key`        | No       | —                             | Your Tigris access key ID      |
| `--access-secret`, `-secret`  | No       | —                             | Your Tigris secret access key  |
| `--endpoint`, `-e`           | No       | `https://t3.storage.dev`     | Tigris API endpoint             |

## Examples

```bash
# Save credentials interactively
tigris configure

# Save credentials directly
tigris configure --access-key tid_AaBb --access-secret tsec_XxYy

# Use a custom endpoint
tigris configure --endpoint https://custom.endpoint.dev
```
