From c6aa42718bf6993c4bd8e1401590bb7876a8fdfb Mon Sep 17 00:00:00 2001 From: Andreas Martin Date: Sun, 11 Mar 2018 10:30:28 +0100 Subject: [PATCH] Update to version 2.0.4 --- src/main/resources/application.yaml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/main/resources/application.yaml b/src/main/resources/application.yaml index 7596235..83d6fe9 100644 --- a/src/main/resources/application.yaml +++ b/src/main/resources/application.yaml @@ -13,10 +13,20 @@ spring: url: jdbc:h2:file:./data/camunda username: sa password: sa +## Uncomment the following lines to enable the h2 DB console: # h2: # console: # enabled: true # path: /console +## Uncomment the following lines to change to port number: #server: -# port: 8081 \ No newline at end of file +# port: 8081 + +## Confidential credentials should be kept outside of version control. +## Copy the following lines to an additional file called application-local.yaml to use a remote database e.g. on Heroku: + #spring: + # datasource: + # url: jdbc:postgresql://:/?user=&password=&sslmode=require + # username: + # password: \ No newline at end of file