tAnother try
Change-Id: I9503240aa1fdf5307bc5d2a75be0a89fe3744eea
diff --git a/backend/demo/src/main/resources/application.properties b/backend/demo/src/main/resources/application.properties
new file mode 100644
index 0000000..90968f5
--- /dev/null
+++ b/backend/demo/src/main/resources/application.properties
@@ -0,0 +1,10 @@
+# H2 Configuration (Ensure these are uncommented)
+spring.datasource.url=jdbc:h2:mem:testdb
+spring.datasource.driver-class-name=org.h2.Driver
+spring.datasource.username=sa
+spring.datasource.password=
+spring.h2.console.enabled=true
+
+# Required for JPA/Hibernate
+spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
+spring.jpa.hibernate.ddl-auto=update
\ No newline at end of file