You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(cli): add CLI interface with start and validate commands (#34)
* feat(cli): add CLI interface with start and validate commands
Add a new command-line interface to improve user experience and provide better
server management capabilities. This change includes:
- Add new CLI module using Click framework
- Implement 'start' command with configurable host, port, and responses file
- Add 'validate' command to check responses.yml structure
- Update config to support environment variable for responses file path
- Update README with comprehensive CLI documentation
- Add CLI entry point in pyproject.toml
The CLI now supports:
- mockllm start [--responses FILE] [--host HOST] [--port PORT] [--reload]
- mockllm validate <responses_file>
- mockllm --version
- mockllm --help
Bump version for pypi publish
Breaking Changes: None
Dependencies Added: click>=8.1.0
* Add CLI capability
0 commit comments