From ba7e3c01db23a1a5a726b405c4744b7656901e04 Mon Sep 17 00:00:00 2001 From: MK13 Date: Fri, 13 Nov 2020 23:33:58 +0100 Subject: [PATCH] Add demo deployment profile --- .../src/main/resources/config/application-demo.properties | 7 +++++++ .../src/main/resources/config/application-demo.properties | 1 + .../src/main/resources/static/changelog.txt | 3 +++ 3 files changed, 11 insertions(+) create mode 100644 financer-server/src/main/resources/config/application-demo.properties create mode 100644 financer-web-client/src/main/resources/config/application-demo.properties diff --git a/financer-server/src/main/resources/config/application-demo.properties b/financer-server/src/main/resources/config/application-demo.properties new file mode 100644 index 0000000..63d7b08 --- /dev/null +++ b/financer-server/src/main/resources/config/application-demo.properties @@ -0,0 +1,7 @@ +spring.datasource.url=jdbc:postgresql://localhost/financer_demo +spring.datasource.username=financer_demo +spring.datasource.password=financer_demo + +financer.mailRecipients[0]=demo@example.com + +financer.email.language=GERMANY \ No newline at end of file diff --git a/financer-web-client/src/main/resources/config/application-demo.properties b/financer-web-client/src/main/resources/config/application-demo.properties new file mode 100644 index 0000000..1e79ae4 --- /dev/null +++ b/financer-web-client/src/main/resources/config/application-demo.properties @@ -0,0 +1 @@ +financer.serverUrl=http://localhost:8080/financer-server-demo/ \ No newline at end of file diff --git a/financer-web-client/src/main/resources/static/changelog.txt b/financer-web-client/src/main/resources/static/changelog.txt index 0566916..98faae8 100644 --- a/financer-web-client/src/main/resources/static/changelog.txt +++ b/financer-web-client/src/main/resources/static/changelog.txt @@ -1,3 +1,6 @@ +v35 -> v36: +- Add demo deployment profile + v34 -> v35: - No changes, just parallel deployment version number fixes