feat(generator): 添加Taro页面模板和AI聊天功能
- 添加.gitignore文件配置忽略规则 - 添加Taro新增页面配置模板add.config.ts.btl - 添加Taro新增页面组件模板add.tsx.btl - 实现AiController控制器支持AI聊天消息处理 - 添加AlipayConfigUtil支付宝配置工具类 - 添加AlipayParam支付宝参数类 - 添加AliYunSender阿里云发送工具类 - 添加AliyunTranslateUtil阿里云翻译工具类 - 添加ApiResult统一返回结果类 - 配置application.yml主应用配置文件 - 配置application-cms.yml生产环境配置 - 配置application-dev.yml开发环境配置 - 添加application-prod.yml生产环境配置文件
This commit is contained in:
45
.gitignore
vendored
Normal file
45
.gitignore
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
HELP.md
|
||||
target/
|
||||
!.mvn/wrapper/maven-wrapper.jar
|
||||
!**/src/main/**
|
||||
!**/src/test/**
|
||||
|
||||
### STS ###
|
||||
.apt_generated
|
||||
.classpath
|
||||
.factorypath
|
||||
.project
|
||||
.settings
|
||||
.springBeans
|
||||
.sts4-cache
|
||||
|
||||
### IntelliJ IDEA ###
|
||||
.idea
|
||||
*.iws
|
||||
*.iml
|
||||
*.ipr
|
||||
|
||||
### NetBeans ###
|
||||
/nbproject/private/
|
||||
/nbbuild/
|
||||
/dist/
|
||||
/nbdist/
|
||||
/.nb-gradle/
|
||||
build/
|
||||
|
||||
### VS Code ###
|
||||
.vscode/
|
||||
/cert/
|
||||
/src/main/resources/dev/
|
||||
|
||||
### macOS ###
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
/file/
|
||||
/websoft-modules.log
|
||||
/tmp/
|
||||
Reference in New Issue
Block a user