Document application configuration options and settings
Create configuration documentation for:
**Application:** {{APP_NAME}}
**Configuration Method:** {{CONFIG_METHOD}} (env vars, config files, etc.)
**Configuration Format:** {{FORMAT}} (JSON, YAML, TOML, etc.)
**Configuration Options:**
{{CONFIG_OPTIONS}}
Generate comprehensive configuration reference:
# {{APP_NAME}} Configuration Reference
## Overview
- How configuration works
- Configuration precedence
- Hot reload support
## Configuration Methods
### Environment Variables
```bash
export APP_SETTING=value
```
### Configuration File
```yaml
# config.yaml
setting: value
```
### Command Line
```bash
app --setting=value
```
## Configuration Options
### Category: [e.g., Server]
#### SETTING_NAME
| Property | Value |
|----------|-------|
| Type | string/number/boolean |
| Default | default_value |
| Required | Yes/No |
| Environment | APP_SETTING_NAME |
| Config Key | setting.name |
**Description:**
Detailed explanation of what this setting does
**Example:**
```yaml
setting_name: example_value
```
**Notes:**
- Special considerations
- Related settings
---
[Repeat for all settings]
## Configuration Examples
### Minimal Configuration
```yaml
# Minimum required settings
```
### Development Configuration
```yaml
# Settings for development
```
### Production Configuration
```yaml
# Recommended production settings
```
## Validation
How configuration is validated
## Migration Guide
Changes between versions
## Troubleshooting
Common configuration issuesOr press ⌘C to copy
Replace these placeholders with your own content before using the prompt.
[{APP_NAME][{CONFIG_METHOD][{FORMAT][{CONFIG_OPTIONS]