Add support for environment variable configuration
- 主要語言
- Python
- 星號
- 28.2k
- 分支
- 1.5k
- PR 合併指標
- 30 天內沒有已合併 PR
描述
### Problem
Currently, Python Fire CLI tools require all configuration to be passed via command-line arguments. For sensitive data or frequently used configurations, this can be cumbersome and insecure.
### Proposed Solution
Add support for reading configuration values from environment variables with a naming convention like `FIRE_`.
### Example Usage
```markdown
python import fire
def deploy(api_key, region='us-east-1'):
"""Deploy application"""
print(f"Deploying to {region} with key {api_key}")
if __name__ == '__main__':
fire.Fire(deploy)
```
Current usage (exposes secret):
```markdown
python deploy.py --api-key=secret123 --region=eu-west-1
```
Proposed usage:
```markdown
export FIRE_API_KEY=secret123
python deploy.py --region=eu-west-1
```
### Benefits
- Security: Sensitive data not exposed in process lists
- Convenience: Reduce repetitive argument typing
- DevOps: Better integration with container/cloud environments
### Alternative Considered
Using config files, but environment variables are more standard in modern deployment workflows.
貢獻指南
研究方向
首先追蹤 Python Fire 的命令列參數解析與設定流程;該 issue 未指定檔案、測試或進入點。完成內容應包括 FIRE_ 慣例,保留命令列行為,並以測試涵蓋文件中的 API-key 與區域範例。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- python
- 領域
- cli
- Issue 類型
- 功能
- 難度
- 5/5
- 預估耗時
- 一週以上
- 活躍度
- 停滯
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100