Created
May 6, 2017 13:51
-
-
Save akfreas/aad4d7e33fbea63ce24c5bbec1eebc59 to your computer and use it in GitHub Desktop.
dhis.conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Hibernate SQL dialect | |
connection.dialect = org.hibernate.dialect.PostgreSQLDialect | |
# JDBC driver class | |
connection.driver_class = org.postgresql.Driver | |
# JDBC driver connection URL | |
connection.url = jdbc:postgresql://${RDS_HOSTNAME}:${RDS_PORT}/${RDS_DB_NAME} | |
# Database username | |
connection.username = ${RDS_USERNAME} | |
# Database password | |
connection.password = ${RDS_PASSWORD} | |
# Database schema behavior, can be validate, update, create, create-drop | |
connection.schema = update | |
# Encryption password (not used for now) | |
# encryption.password = xxxx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment