From 692e794ec4343e314d70129ee3087880619b7637 Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Wed, 24 Jun 2020 10:00:43 +0700 Subject: [PATCH] Add bootstrap config --- src/main/resources/application.properties | 1 - src/main/resources/bootstrap.yml | 9 +++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) delete mode 100644 src/main/resources/application.properties create mode 100644 src/main/resources/bootstrap.yml diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties deleted file mode 100644 index 8b13789..0000000 --- a/src/main/resources/application.properties +++ /dev/null @@ -1 +0,0 @@ - diff --git a/src/main/resources/bootstrap.yml b/src/main/resources/bootstrap.yml new file mode 100644 index 0000000..32ac4d9 --- /dev/null +++ b/src/main/resources/bootstrap.yml @@ -0,0 +1,9 @@ +spring: + application: + name: config-client-sample + cloud: + config: + uri: ${CONFIG_URL:https://config-apren.cubetiqs.com} + profile: config-client-sample + username: SomboCheaRootAdmin + password: noRootPassword7891 \ No newline at end of file