Commit d005ccf7b39b460699469ed765b76ffaa26216aa

Authored by 简柏林
1 parent cc773768

配置本地开发环境

... ... @@ -211,7 +211,7 @@ ui:
211 211 database:
212 212 ts_max_intervals: "${DATABASE_TS_MAX_INTERVALS:700}" # Max number of DB queries generated by a single API call to fetch telemetry records
213 213 ts:
214   - type: "${DATABASE_TS_TYPE:timescale}" # cassandra, sql, or timescale (for hybrid mode, DATABASE_TS_TYPE value should be cassandra, or timescale)
  214 + type: "${DATABASE_TS_TYPE:sql}" # cassandra, sql, or timescale (for hybrid mode, DATABASE_TS_TYPE value should be cassandra, or timescale)
215 215 ts_latest:
216 216 type: "${DATABASE_TS_LATEST_TYPE:sql}" # cassandra, sql, or timescale (for hybrid mode, DATABASE_TS_TYPE value should be cassandra, or timescale)
217 217
... ... @@ -766,9 +766,9 @@ spring:
766 766 datasource:
767 767 # Database driver for Spring JPA - org.postgresql.Driver
768 768 driverClassName: "${SPRING_DRIVER_CLASS_NAME:org.postgresql.Driver}"
769   - url: "${SPRING_DATASOURCE_URL:jdbc:postgresql://222.180.200.114:20638/z_tk_fatest_cloud_001}"
  769 + url: "${SPRING_DATASOURCE_URL:jdbc:postgresql://10.9.0.221:5432/thingskit}"
770 770 username: "${SPRING_DATASOURCE_USERNAME:postgres}"
771   - password: "${SPRING_DATASOURCE_PASSWORD:Thw770!!uriq}"
  771 + password: "${SPRING_DATASOURCE_PASSWORD:postgres}"
772 772 hikari:
773 773 # This property controls the amount of time that a connection can be out of the pool before a message is logged indicating a possible connection leak. A value of 0 means leak detection is disabled
774 774 leakDetectionThreshold: "${SPRING_DATASOURCE_HIKARI_LEAK_DETECTION_THRESHOLD:0}"
... ...
... ... @@ -696,6 +696,9 @@
696 696 </argLine>
697 697 </configuration>
698 698 </plugin>
  699 +
  700 +
  701 +
699 702 <plugin>
700 703 <groupId>org.apache.maven.plugins</groupId>
701 704 <artifactId>maven-install-plugin</artifactId>
... ...