...
Code Block |
---|
## DATASOURCE # Resource1 is the datasource name used in domains.properties # Adapt server name (localhost) and port (2282) if required # You can add multiple datasources if you want to connect to multiple CSS Servers. Datasource name must be unique # You have to configure your domains names and relative schema names in domains.properties restapi.datasource[0].url=jdbc:postgresql://localhost:2282/postgres restapi.datasource[0].key=D228ED8B5E5690B3A75 restapi.datasource[0].poolname=Resource1 restapi.datasource[0].minimumIdle=10 restapi.datasource[0].maximumPoolSize=20 #datasource configuration for user management spring.datasource.url=jdbc:postgresql://localhost:2282/postgres?ApplicationName=DASHBOARDS¤tSchema=cast_dashboards spring.datasource.platform=postgres restapispring.datasource[0].key=D228ED8B5E5690B3A75 spring.datasource.initialization-mode=always spring.datasource.driver-class-name=org.postgresql.Driver spring.liquibase.change-log=classpath:db/changelog/db.changelog-master.xml spring.liquibase.default-schema=cast_dashboards spring.liquibase.enabled=true |
...