diff --git a/regional-etl/src/main/resources/application-dz.yml b/regional-etl/src/main/resources/application-dz.yml new file mode 100644 index 0000000..bcae619 --- /dev/null +++ b/regional-etl/src/main/resources/application-dz.yml @@ -0,0 +1,14 @@ +spring: + datasource: + url: jdbc:mysql://192.168.200.119:3306/platform?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8 + username: platform + password: platform123 + driver-class-name: com.mysql.jdbc.Driver + + data: + mongodb: + host: 192.168.200.119 + port: 27017 + database: platform + username: platform + password: platform123 diff --git a/regional-etl/src/main/resources/application-qhd.yml b/regional-etl/src/main/resources/application-qhd.yml new file mode 100644 index 0000000..eb49162 --- /dev/null +++ b/regional-etl/src/main/resources/application-qhd.yml @@ -0,0 +1,14 @@ +spring: + datasource: + url: jdbc:mysql://localhost:3306/platform_dev?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8 + username: root + password: + driver-class-name: com.mysql.jdbc.Driver + + data: + mongodb: + host: localhost + port: 27017 + database: platform + username: platform + password: platform123 diff --git a/regional-etl/src/main/resources/application.properties b/regional-etl/src/main/resources/application.properties index 28dd6a9..b780649 100644 --- a/regional-etl/src/main/resources/application.properties +++ b/regional-etl/src/main/resources/application.properties @@ -22,4 +22,4 @@ mybatis.typeAliasesPackage=com.lyms.etl.model mybatis.mapperLocations=classpath:mappers/*.xml #spring.profiles.active=prod, etl -spring.profiles.active=prod, patient \ No newline at end of file +spring.profiles.active=dz, patient \ No newline at end of file