diff options
author | William Harrington <kb0iic@berzerkula.org> | 2025-02-13 21:22:08 -0600 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2025-02-13 21:22:08 -0600 |
commit | 93edf161867499bfc7f4d25c5cb21c5a89b069d0 (patch) | |
tree | 908a4f27a110b2ee4e68f85561f90e7bedd7b3f9 /src/test/resources/application.yml | |
parent | 4711840cf94828db267d0bd35bc45deac6ce41ae (diff) |
Add ssl_bundle.
Diffstat (limited to 'src/test/resources/application.yml')
-rw-r--r-- | src/test/resources/application.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/resources/application.yml b/src/test/resources/application.yml new file mode 100644 index 0000000..4c7d55f --- /dev/null +++ b/src/test/resources/application.yml @@ -0,0 +1,19 @@ +org: + springframework: + web: DEBUG + security: DEBUG + +spring: + datasource: + url: jdbc:h2:mem:testdb + driver-class-name: org.h2.Driver + jpa: + database-platform: org.hibernate.dialect.H2Dialect + show-sql: true + properties: + hibernate: + format_sql: true + + h2: + console: + enabled: true |