chore: update README with new CLI options for configuration and linting & add NOTICE #66

Merged
blas merged 5 commits from feat/update-docu into main 2026-03-27 14:11:30 +00:00
Showing only changes of commit 07e4559133 - Show all commits

View File

@@ -99,6 +99,15 @@ generate-clean-arch -i api.yaml -t ./my-templates
# Dry run (no files written) # Dry run (no files written)
generate-clean-arch -i swagger.yaml --dry-run generate-clean-arch -i swagger.yaml --dry-run
# Skip linting after generation
generate-clean-arch -i swagger.yaml --skip-lint
# Generate a config file to reuse later
generate-clean-arch --init-config generation-config.json
# Run using a config file (no interactive prompts)
generate-clean-arch -c generation-config.json
# Full example with all options # Full example with all options
generate-clean-arch -i ./docs/api.yaml -o ./frontend/src/app -t ./custom-templates generate-clean-arch -i ./docs/api.yaml -o ./frontend/src/app -t ./custom-templates
``` ```