Add application-prod.yml for production Flyway config
This commit is contained in:
parent
ab1cdb358f
commit
4385f43b08
1 changed files with 10 additions and 0 deletions
10
backend/src/main/resources/application-prod.yml
Normal file
10
backend/src/main/resources/application-prod.yml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
spring:
|
||||
flyway:
|
||||
locations: classpath:db/migration
|
||||
# Prod DBs created before seeds moved to db/dev-migration still list V2/V4/V6 in history.
|
||||
ignore-migration-patterns: '*:missing'
|
||||
|
||||
app:
|
||||
admin:
|
||||
email: ${ADMIN_EMAIL}
|
||||
password: ${ADMIN_PASSWORD}
|
||||
Loading…
Reference in a new issue