blob: 513c00ad2ae945364f25d7bca303f748917ac4ee [file] [log] [blame]
lukegleeson665e2242023-01-11 09:45:53 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE hibernate-configuration PUBLIC
3 "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
4 "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
5
6<hibernate-configuration>
7 <session-factory>
8 <property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
9 <property name="hibernate.connection.url">${DB_URL}</property>
10 <property name="hibernate.connection.username">${DB_USERNAME}</property>
11 <property name="hibernate.connection.password">${DB_PASSWORD}</property>
12 <property name="hibernate.dialect">org.hibernate.dialect.PostgreSQL82Dialect</property>
13 <property name="show_sql">true</property>
14 <property name="hibernate.hbm2ddl.auto">none</property>
15 </session-factory>
16</hibernate-configuration>