Skip to content

Commit e1820bf

Browse files
committed
update erupt-web
1 parent 8295c01 commit e1820bf

File tree

8 files changed

+33
-15
lines changed

8 files changed

+33
-15
lines changed

erupt-ai/pom.xml

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<artifactId>erupt-ai</artifactId>
77
<name>erupt-ai</name>
8-
<description>erupt ai llm</description>
8+
<description>Erupt AI LLM</description>
99

1010
<parent>
1111
<groupId>xyz.erupt</groupId>
@@ -25,6 +25,11 @@
2525
<artifactId>velocity-engine-core</artifactId>
2626
<version>2.3</version>
2727
</dependency>
28+
<dependency>
29+
<groupId>org.springframework.boot</groupId>
30+
<artifactId>spring-boot-configuration-processor</artifactId>
31+
<optional>true</optional>
32+
</dependency>
2833
</dependencies>
2934

3035
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package xyz.erupt.ai;
2+
3+
import org.springframework.boot.context.properties.EnableConfigurationProperties;
4+
import org.springframework.context.annotation.ComponentScan;
5+
import org.springframework.context.annotation.Configuration;
6+
7+
/**
8+
* @author YuePeng
9+
* date 2025/2/22 00:20
10+
*/
11+
@Configuration
12+
@ComponentScan
13+
@EnableConfigurationProperties
14+
public class EruptAiAutoConfiguration {
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
org.springframework.boot.autoconfigure.EnableAutoConfiguration=xyz.erupt.ai.EruptAiAutoConfiguration
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
xyz.erupt.ai.EruptAiAutoConfiguration

erupt-cloud/erupt-cloud-node/src/main/java/xyz/erupt/cloud/node/EruptCloudNodeAutoConfiguration.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@
33
import org.springframework.boot.context.properties.EnableConfigurationProperties;
44
import org.springframework.context.annotation.ComponentScan;
55
import org.springframework.context.annotation.Configuration;
6-
import xyz.erupt.cloud.node.config.EruptNodeProp;
76

87
/**
98
* @author YuePeng
109
* date 2021/12/16 00:15
1110
*/
1211
@Configuration
1312
@ComponentScan
14-
@EnableConfigurationProperties(EruptNodeProp.class)
13+
@EnableConfigurationProperties
1514
public class EruptCloudNodeAutoConfiguration {
1615
}

erupt-tpl/RREAME.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#### 页面模板相关代码
1+
#### Erupt TPL

erupt-upms/README.md

+5-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
## 用户与接口安全相关模块
2-
#### 页面配置:
3-
用户管理、组织管理、菜单维护、角色维护、字典管理等
1+
# UPMS (User Permissions Manager System)
2+
### Core Features:
3+
User Management, Menu Management, Role Management, Organization Management, Open API, Operation Logs, Login Logs, Online Users, System Logs
44

5-
#### 核心功能
6-
记录登录日志,记录操作日志,redis session支持,安全校验等。
7-
8-
#### 强安全机制
9-
使用@EruptRouter注解可定义登录校验,菜单校验,erupt访问权限校验等强大功能
5+
### Robust Security Mechanism
6+
Including features such as operation auditing, permission verification, and API encryption.

erupt-web/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
### Web for angular
1+
### Erupt-Web
22

3-
如需自定义页面请使用 erupt-tpl模块
3+
当前包内容为编译后的的前端代码,可直接使用
44

5-
该部分源码将在 [github](https://github.com/erupts/erupt) star 达到 550 个开源
5+
源码详见:https://www.yuque.com/erupts/erupt/sqdd3r

0 commit comments

Comments
 (0)