Skip to content

Commit

Permalink
#569 - save and query of array now possible
Browse files Browse the repository at this point in the history
  • Loading branch information
grabdoc committed May 14, 2024
1 parent 2a86985 commit 9295384
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
16 changes: 16 additions & 0 deletions api-rest/src/main/resources/application-db.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
app:
databases:
- name: ${DB_NAME:pgdb}
type: POSTGRESQL
url: jdbc:postgresql://localhost:5432/homidb
username: homi2022
password: homi2022
schemas:
connectionProperties:
ssl: false
envProperties:
enableDatetimeFormatting: ${ENABLE_DATETIME_FORMATTING:false}
timeFormat: ${TIME_FORMAT:HH:mm:ss}
dateFormat: ${DATE_FORMAT:yyyy-MM-dd}
dateTimeFormat: ${DATE_TIME_FORMAT:yyyy-MM-dd HH:mm:ss}
defaultFetchLimit : ${DEFAULT_FETCH_LIMIT:100}
18 changes: 18 additions & 0 deletions api-rest/src/main/resources/application-mongo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
app:
databases:
- name: DB1
type: POSTGRESQL
url: jdbc:postgresql://localhost:5432/homidb
username: homi2022
password: homi2022
connectionProperties:
ssl: false
envProperties:
enableDatetimeFormatting: true
timeFormat: 'HH:mm:ss'
dateFormat: 'dd-MM-yyyy'
dateTimeFormat: 'dd-MM-yyyy HH:mm:ss'
defaultFetchLimit : 100



0 comments on commit 9295384

Please sign in to comment.