ai-chat/pom.xml | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
dev-admin/pom.xml | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
dev-admin/src/main/resources/application-dev.yml | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
pom.xml | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
ai-chat/pom.xml
New file @@ -0,0 +1,27 @@ <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>fast-dev</artifactId> <groupId>com.monkeylessey</groupId> <version>0.0.1-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>ai-chat</artifactId> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>com.monkeylessey</groupId> <artifactId>dev-sys</artifactId> </dependency> </dependencies> </project> dev-admin/pom.xml
@@ -20,7 +20,7 @@ <dependencies> <dependency> <groupId>com.monkeylessey</groupId> <artifactId>dev-sys</artifactId> <artifactId>ai-chat</artifactId> </dependency> </dependencies> dev-admin/src/main/resources/application-dev.yml
@@ -1,13 +1,14 @@ spring: redis: host: 127.0.0.1 host: 42.193.1.25 port: 6379 database: 1 database: 10 password: ycl2018 datasource: username: root password: 123456 password: 321$YcYl@1970! driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://localhost:3306/start?useUnicode=true&characterEncoding=utf8&useSSL=true&serverTimezone=GMT%2B8 url: jdbc:mysql://42.193.1.25:3306/ai-chat?useUnicode=true&characterEncoding=utf8&useSSL=true&serverTimezone=GMT%2B8 # rabbitmq rabbitmq: host: localhost pom.xml
@@ -7,6 +7,7 @@ <module>dev-admin</module> <module>dev-common</module> <module>dev-sys</module> <module>ai-chat</module> </modules> <parent> <groupId>org.springframework.boot</groupId>