删除无用提交
This commit is contained in:
parent
7f06574ce9
commit
94fa5e850f
|
|
@ -1,30 +0,0 @@
|
|||
server:
|
||||
port: 8081
|
||||
|
||||
spring:
|
||||
datasource:
|
||||
driver-class-name: com.oceanbase.jdbc.Driver
|
||||
url: jdbc:oceanbase://localhost:2881/tacit?useUnicode=true&characterEncoding=utf-8&useSSL=false
|
||||
username: root
|
||||
password: password
|
||||
|
||||
mybatis-plus:
|
||||
configuration:
|
||||
map-underscore-to-camel-case: true
|
||||
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
||||
mapper-locations: classpath*:mapper/**/*.xml
|
||||
type-aliases-package: com.tacit.admin.entity
|
||||
|
||||
# Swagger Configuration
|
||||
springdoc:
|
||||
api-docs:
|
||||
enabled: true
|
||||
path: /v3/api-docs
|
||||
swagger-ui:
|
||||
enabled: true
|
||||
path: /swagger-ui.html
|
||||
|
||||
# Logging Configuration
|
||||
logging:
|
||||
level:
|
||||
com.tacit.admin: debug
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
spring:
|
||||
application:
|
||||
name: tacit-admin
|
||||
cloud:
|
||||
nacos:
|
||||
discovery:
|
||||
server-addr: localhost:8848
|
||||
namespace: public
|
||||
config:
|
||||
server-addr: localhost:8848
|
||||
namespace: public
|
||||
file-extension: yml
|
||||
group: DEFAULT_GROUP
|
||||
refresh-enabled: true
|
||||
profiles:
|
||||
active: dev
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1,30 +0,0 @@
|
|||
server:
|
||||
port: 8082
|
||||
|
||||
spring:
|
||||
datasource:
|
||||
driver-class-name: com.oceanbase.jdbc.Driver
|
||||
url: jdbc:oceanbase://localhost:2881/tacit?useUnicode=true&characterEncoding=utf-8&useSSL=false
|
||||
username: root
|
||||
password: password
|
||||
|
||||
mybatis-plus:
|
||||
configuration:
|
||||
map-underscore-to-camel-case: true
|
||||
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
||||
mapper-locations: classpath*:mapper/**/*.xml
|
||||
type-aliases-package: com.tacit.app.entity
|
||||
|
||||
# Swagger Configuration
|
||||
springdoc:
|
||||
api-docs:
|
||||
enabled: true
|
||||
path: /v3/api-docs
|
||||
swagger-ui:
|
||||
enabled: true
|
||||
path: /swagger-ui.html
|
||||
|
||||
# Logging Configuration
|
||||
logging:
|
||||
level:
|
||||
com.tacit.app: debug
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
spring:
|
||||
application:
|
||||
name: tacit-app-api
|
||||
cloud:
|
||||
nacos:
|
||||
discovery:
|
||||
server-addr: localhost:8848
|
||||
namespace: public
|
||||
config:
|
||||
server-addr: localhost:8848
|
||||
namespace: public
|
||||
file-extension: yml
|
||||
group: DEFAULT_GROUP
|
||||
refresh-enabled: true
|
||||
profiles:
|
||||
active: dev
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1,50 +0,0 @@
|
|||
server:
|
||||
port: 8080
|
||||
|
||||
spring:
|
||||
cloud:
|
||||
gateway:
|
||||
discovery:
|
||||
locator:
|
||||
enabled: true
|
||||
lower-case-service-id: true
|
||||
routes:
|
||||
# Admin Service Route
|
||||
- id: tacit-admin
|
||||
uri: lb://tacit-admin
|
||||
predicates:
|
||||
- Path=/admin/**
|
||||
filters:
|
||||
- StripPrefix=1
|
||||
|
||||
# App API Service Route
|
||||
- id: tacit-app-api
|
||||
uri: lb://tacit-app-api
|
||||
predicates:
|
||||
- Path=/api/**
|
||||
filters:
|
||||
- StripPrefix=1
|
||||
- JwtAuthenticationFilter
|
||||
|
||||
# Swagger UI Routes
|
||||
- id: swagger-admin
|
||||
uri: lb://tacit-admin
|
||||
predicates:
|
||||
- Path=/swagger-admin/**
|
||||
filters:
|
||||
- StripPrefix=1
|
||||
|
||||
- id: swagger-app-api
|
||||
uri: lb://tacit-app-api
|
||||
predicates:
|
||||
- Path=/swagger-app-api/**
|
||||
filters:
|
||||
- StripPrefix=1
|
||||
|
||||
# Logging Configuration
|
||||
logging:
|
||||
level:
|
||||
org.springframework.cloud.gateway: debug
|
||||
org.springframework.http.server.reactive: debug
|
||||
org.springframework.web.reactive: debug
|
||||
reactor.netty: debug
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
spring:
|
||||
application:
|
||||
name: tacit-gateway
|
||||
cloud:
|
||||
nacos:
|
||||
discovery:
|
||||
server-addr: localhost:8848
|
||||
namespace: public
|
||||
config:
|
||||
server-addr: localhost:8848
|
||||
namespace: public
|
||||
file-extension: yml
|
||||
group: DEFAULT_GROUP
|
||||
refresh-enabled: true
|
||||
profiles:
|
||||
active: dev
|
||||
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue