20 lines
375 B
YAML
20 lines
375 B
YAML
database:
|
|
# the name of your JDBC driver
|
|
driverClass: org.h2.Driver
|
|
|
|
# the JDBC URL
|
|
url: jdbc:h2:./sampledatabase.db
|
|
|
|
# any properties specific to your JDBC driver:
|
|
properties:
|
|
foreign_keys: true
|
|
hibernate.hbm2ddl.auto: create
|
|
|
|
server:
|
|
rootPath: /api/
|
|
requestLog:
|
|
appenders:
|
|
- type: console
|
|
queueSize: 2048
|
|
|
|
adminPassword: "testPassword" |