Database
Currently, Kouncil supports two databases:
PostgreSQL
H2
If no database is specified with below properties, H2 in-memory database will be used.
Configuration properties
spring.datasource.urlJDBC URL of the databasespring.datasource.usernamelogin username of the databasespring.datasource.passwordlogin password of the databasespring.jpa.hibernate.default_schemasets default schema
Example
spring:
datasource:
url: jdbc:postgresql://localhost:5432/
username: postgres
password: password
jpa:
hibernate:
default_schema: kouncilLast updated