-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathliquibase.properties.template
More file actions
36 lines (26 loc) · 1.14 KB
/
liquibase.properties.template
File metadata and controls
36 lines (26 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Liquibase Configuration - LOCAL DEVELOPMENT/TESTING ONLY
# This file contains default settings for local testing
# DO NOT use production credentials
#
driver: org.postgresql.Driver
# === CHOOSE YOUR SETUP ===
# Option 1: Liquibase in Docker + PostgreSQL on Host (RECOMMENDED - DEFAULT)
# PostgreSQL is running on your host machine
url: jdbc:postgresql://host.docker.internal:5432/pafs_backend_local
# Option 2: Standalone Liquibase (Liquibase installed locally)
# Use this if you run: liquibase --defaults-file=liquibase.properties update
# Uncomment the line below
# url: jdbc:postgresql://localhost:5432/pafs_backend_local
# Option 3: Both Liquibase and PostgreSQL in Docker
# Use this if both are running in Docker containers on the same network
# Uncomment the line below
# url: jdbc:postgresql://postgres:5432/pafs_backend_local
# Database credentials - REPLACE WITH YOUR VALUES
username: <YOUR_USERNAME>
password: <YOUR_PASSWORD>
changeLogFile: ./changelog/db.changelog.xml
liquibase.hub.mode: off
liquibase.showSummary: SUMMARY
liquibase.showSummaryOutput: CONSOLE
defaultSchemaName: public
logLevel: INFO