Skip to main content

⚓️ Install

·70 words

Prerequisites
#

  • Rust toolchain (cargo) installed.

Build From Source
#

git clone https://github.com/username/fauxrest.git
cd fauxrest
cargo build --release

The binary is generated at target/release/fauxrest.

Quick Start
#

  1. Create a data/ directory with JSON files.
  2. Prepare a config file (for example fauxrest.json) if you need explicit serializer/layout settings.
  3. Build outputs:
fauxrest build ./data fauxrest.json
  1. Check generated files under the configured destination path.

Example Input
#

{
	"name": "Alice",
	"role": "Developer"
}