12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- # ===================================================================
- # 开发工具时时默认的配置
- #
- # 所有相对路径以本项目根目录为准
- # ===================================================================
- generator:
- process:
- default: laravel,laravel-doc,postman
- laravel-auto-test: laravel-auto-test
- client: nodejs-client
- env: dev
- api-prefix: stub-api
- template-path: ./resources/generator
- test-host: http://localhost
- writers:
- postman:
- path: .
- testcases:
- path: ./resources/generator/testcases
- laravel:
- path: .
- bo-suffix: BO
- bo-folder: BOs
- dto-suffix: DTO
- dto-folder: DTOs
- service-suffix: Service
- service-folder: Services
- laravel-doc:
- path: .
- http-prefix: stub-docs
- laravel-auto-test:
- path: .
- force-replace: false
- testcases-path: ./resources/generator/testcases
- nodejs-client:
- output: ./resources/js/apis
- spring:
- profiles:
- active: prod
- thymeleaf:
- mode: TEXT
- suffix: .stub
- encoding: UTF-8
- prefix: classpath:/stubs/
|