Skip to content

Commit

Permalink
feat: seperate changelog configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
mebo4b committed Oct 29, 2020
1 parent 0195342 commit 4a2fcee
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 3 deletions.
7 changes: 6 additions & 1 deletion src/main/resources/application-dev.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,9 @@ keycloakService.admin.clientId=admin-cli

# Rocket.Chat
rocket.systemuser.username=
rocket.systemuser.password=
rocket.systemuser.password=

# Liquibase
spring.liquibase.change-log=classpath:db/changelog/messageservice-dev-master.xml
spring.liquibase.user=
spring.liquibase.password=
7 changes: 6 additions & 1 deletion src/main/resources/application-prod.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,9 @@ keycloak.cors=false
keycloakService.techuser.id=
keycloakService.admin.username=
keycloakService.admin.password=
keycloakService.admin.clientId=admin-cli
keycloakService.admin.clientId=admin-cli

# Liquibase
spring.liquibase.change-log=classpath:db/changelog/messageservice-prod-master.xml
spring.liquibase.user=
spring.liquibase.password=
7 changes: 6 additions & 1 deletion src/main/resources/application-staging.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,9 @@ keycloakService.admin.clientId=admin-cli

# Rocket.Chat
rocket.systemuser.username=
rocket.systemuser.password=
rocket.systemuser.password=

# Liquibase
spring.liquibase.change-log=classpath:db/changelog/messageservice-staging-master.xml
spring.liquibase.user=
spring.liquibase.password=
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.2.xsd">
<include file="db/changelog/changeset/0001_initsql/initSql.xml"/>
</databaseChangeLog>
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.2.xsd">
<include file="db/changelog/changeset/0001_initsql/initSql.xml"/>
</databaseChangeLog>

0 comments on commit 4a2fcee

Please sign in to comment.