This commit is contained in:
litianxiang
2026-05-15 15:09:21 +08:00
commit ac7de27099
69 changed files with 2696 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
# ============================================================
# aida-buyer - Bootstrap
# 通过 NACOS_NAMESPACE 环境变量切换命名空间dev / test / prod
# ============================================================
nacos:
namespace: ltx
host: 18.167.251.121:28848
username: nacos
password: Aidlab123123!
spring:
application:
name: aida-buyer
config:
import: optional:nacos:aida-public-${nacos.namespace}.yml
cloud:
nacos:
discovery:
server-addr: ${nacos.host}
namespace: ${nacos.namespace}
username: ${nacos.username}
password: ${nacos.password}
port: 10095
config:
server-addr: ${nacos.host}
namespace: ${nacos.namespace}
file-extension: yaml
username: ${nacos.username}
password: ${nacos.password}