From 900b15aee24ad889117331145ac4e5bf64ff53fa Mon Sep 17 00:00:00 2001
From: Paul Reichmuth
Date: Wed, 29 Oct 2025 12:47:53 +0100
Subject: [PATCH] change dbuser to root for ease of development
---
src/main/resources/application.properties | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties
index cbeb4a7..ac8ef17 100644
--- a/src/main/resources/application.properties
+++ b/src/main/resources/application.properties
@@ -1,7 +1,7 @@
spring.application.name=timekeep-backend
spring.jpa.hibernate.ddl-auto=update
spring.datasource.url=jdbc:mysql://localhost:3306/jpa
-spring.datasource.username=myuser
-spring.datasource.password=secret
+spring.datasource.username=root
+spring.datasource.password=verysecret
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.jpa.show-sql= true