blob: fae9275ddc4b28eecc8844135f19407f6bc5493b [file] [log] [blame]
emacleec9275522022-03-23 11:02:03 +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>