From 4ae6593fb42369eb369b1e1cbb742ba709e7a330 Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Mon, 22 Jun 2020 10:29:27 +0700 Subject: [PATCH] add dev config --- application-dev.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 application-dev.yml diff --git a/application-dev.yml b/application-dev.yml new file mode 100644 index 0000000..77fdac2 --- /dev/null +++ b/application-dev.yml @@ -0,0 +1,22 @@ +server: + port: 8089 +spring: + thymeleaf: + cache: false + application: + name: rsapper + data: + jdbc: + repositories: + enabled: false + jpa: + hibernate: + ddl-auto: update + show-sql: true + datasource: + driver-class-name: com.mysql.cj.jdbc.Driver + username: cubetiq + password: Root$ + url: jdbc:mysql://${MYSQL_HOST:192.168.0.150}:3306/db_rsapper + session: + timeout: 1m