Files
aida-gateway/src/main/resources/bootstrap.yml

21 lines
672 B
YAML
Raw Normal View History

2026-04-21 14:11:01 +08:00
# ============================================================
# aida-gateway - Bootstrap
# 通过 NACOS_NAMESPACE 环境变量切换命名空间dev / test / prod
# 示例docker run -e NACOS_NAMESPACE=prod ...
# ============================================================
spring:
application:
name: aida-gateway
config:
2026-04-22 11:15:35 +08:00
import: optional:nacos:aida-public-${NACOS_NAMESPACE:test}.yml
2026-04-21 14:11:01 +08:00
cloud:
nacos:
discovery:
server-addr: ${NACOS_HOST:127.0.0.1:8848}
2026-04-22 11:15:35 +08:00
namespace: ${NACOS_NAMESPACE:test}
2026-04-21 14:11:01 +08:00
config:
server-addr: ${NACOS_HOST:127.0.0.1:8848}
2026-04-22 11:15:35 +08:00
namespace: ${NACOS_NAMESPACE:test}
2026-04-21 14:11:01 +08:00
file-extension: yaml