mirror of
https://github.com/Sheldan/abstracto.git
synced 2026-01-25 03:04:50 +00:00
adding support to template environment variables in liquibase configuration removing not needed column from component payload
9 lines
313 B
Django/Jinja
9 lines
313 B
Django/Jinja
changeLogFile: {{ change_log_file }}
|
|
driver: org.postgresql.Driver
|
|
url: jdbc:postgresql://{{ db_host }}:{{ db_port }}/{{ db_database }}
|
|
username: {{ db_user }}
|
|
password: {{ db_password }}
|
|
classpath: {{ postgres_driver_path }}
|
|
{% for key, value in variables.items() %}
|
|
parameter.{{ key }}: {{ value }}
|
|
{% endfor %} |