From f5ae6e02971002a7438c409f667e50af7b2f6f8f Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Wed, 24 Jun 2020 10:29:41 +0700 Subject: [PATCH] Updated --- .gitignore | 2 ++ src/main/resources/bootstrap.yml | 4 ++-- src/main/resources/bootstrap.yml.example | 9 +++++++++ 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 src/main/resources/bootstrap.yml.example diff --git a/.gitignore b/.gitignore index 6c01878..d603f00 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,8 @@ build/ !**/src/main/** !**/src/test/** +bootstrap.yml + ### STS ### .apt_generated .classpath diff --git a/src/main/resources/bootstrap.yml b/src/main/resources/bootstrap.yml index 32ac4d9..7db5dda 100644 --- a/src/main/resources/bootstrap.yml +++ b/src/main/resources/bootstrap.yml @@ -5,5 +5,5 @@ spring: config: uri: ${CONFIG_URL:https://config-apren.cubetiqs.com} profile: config-client-sample - username: SomboCheaRootAdmin - password: noRootPassword7891 \ No newline at end of file + username: anyUsername + password: anyPassword \ No newline at end of file diff --git a/src/main/resources/bootstrap.yml.example b/src/main/resources/bootstrap.yml.example new file mode 100644 index 0000000..7db5dda --- /dev/null +++ b/src/main/resources/bootstrap.yml.example @@ -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: anyUsername + password: anyPassword \ No newline at end of file