clean_gen_cli 1.4.1
clean_gen_cli: ^1.4.1 copied to clipboard
A powerful CLI tool for Flutter developers to generate Clean Architecture features from JSON or YAML configuration files.
Clean Gen CLI Examples #
This directory contains example configuration files that you can use with clean_gen_cli.
Examples Included #
auth.config.json: A comprehensive example for an authentication feature with sign in, sign up, logout, and user list functions.auth.test.json: The same feature using the.test.jsonnaming convention, ideal for API contract testing.auth.config.yaml: The same authentication feature defined in YAML format.config.json: A sample global configuration file to define shared imports and project-specific utility paths.
How to use these examples #
1. Create a feature from JSON #
clean_gen create example/auth.config.json
2. Create a feature from YAML #
clean_gen create example/auth.config.yaml
3. Initialize global config #
clean_gen init example/config.json
For more details, please refer to the main README.md.