- Add api_keys and feishu_apps to config.json - Add env export/init commands for shell integration - Add config CRUD: list, set, delete, init - Add config.json.example template - Add config.json to .gitignore for security - Update README with new commands Usage: mycli env export # Export all env vars mycli config set key value # Set config value mycli config delete key # Delete config key
17 lines
173 B
Plaintext
17 lines
173 B
Plaintext
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
*.so
|
|
*.egg
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
.venv/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
|
|
# Config contains sensitive data (API keys)
|
|
mycli/config.json
|