Hi all, do we have a guideline available to integrate PostgreSQL into camunda application. I’m using the project template from start.camunda.com. I don’t want to use the default H2 database in my application. Would appreciate a blog/guideline/best Practice/ video.
@aravindhrs thanks for the solution. Just one quick question, where do we get url value from? Will given url value works fine?
spring.datasource.url=jdbc:postgresql://localhost:5432/camunda
@hello.aliasad if you install the postgres database in your local machine with same port, then the url work fine. And schema you need to create it, empty schema is enough, engine will auto create the tables for you. You need to enable autoschema update as true.
Thank you so much, really apprciate it. With postgreSQL integration do we need to include the H2 database dependency in the pom.xml file or we can remove that dependency?