### Install MockForge CLI Source: https://mockforge.dev Installs the MockForge command-line interface using Cargo. ```bash $ cargo install mockforge-cli ____ ``` -------------------------------- ### Realistic Data Synthesis Example Source: https://mockforge.dev Example of generating realistic data using template tokens and faker fields within a JSON structure. ```json { "id": "{{uuid}}", "email": "{{faker.email}}" } ``` -------------------------------- ### MockForge CLI Workflow Source: https://mockforge.dev Demonstrates a typical workflow using the MockForge CLI: initializing a configuration, adding an API endpoint with a response body, and serving the mock server. ```bash $ mockforge init ✔ Created mockforge.yaml $ mockforge add /users/{id} --status 200 \ --body '{ "id": "{{uuid}}", "name": "{{name}}" }' $ mockforge serve --port 8080 Listening on http://localhost:8080 ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.