aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/resources/application.yml
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2025-02-12 15:58:52 -0600
committerWilliam Harrington <kb0iic@berzerkula.org>2025-02-12 15:58:52 -0600
commit37635002778afdc08c1f3f391bb2d56e0979f768 (patch)
tree80cd47338540c18aaa08e7d7565f952ebc765c0e /src/main/resources/application.yml
parentc82957893826f5c78a6563abea75cca9ffa24d42 (diff)
migrate from properties file to yaml.
Diffstat (limited to 'src/main/resources/application.yml')
-rw-r--r--src/main/resources/application.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml
new file mode 100644
index 0000000..bd6e0f8
--- /dev/null
+++ b/src/main/resources/application.yml
@@ -0,0 +1,24 @@
+spring:
+ application:
+ name: builddb
+ datasource:
+ driver-class-name: com.mysql.cj.jdbc.Driver
+ url: jdbc:mysql://nucleus.berzerkula.org:3306/builddb_users
+ username: kb0iic
+ password: ENC(1xjvlowHDUgzAYCjEEaYcSQOQHL2SHo8)
+ jpa:
+ show-sql: true
+ hibernate:
+ ddl-auto: update
+
+jasypt:
+ encryptor:
+ algorithm: PBEWithMD5AndDES
+ iv-generator-classname: org.jasypt.iv.NoIvGenerator
+ password: builddb
+
+management:
+ endpoints:
+ web:
+ exposure:
+ include: "*" \ No newline at end of file