JIrcBot/src/main/resources/application.yml

34 lines
679 B
YAML
Raw Normal View History

2017-11-15 17:52:56 +03:00
name: jircbot
config: config.json
2018-03-10 14:04:01 +03:00
server:
2018-03-10 21:58:00 +03:00
port: 8002
2018-03-10 14:04:01 +03:00
spring:
2018-02-08 12:52:26 +03:00
# for PostgreSQL
dataSource:
driverClassName: org.postgresql.Driver
url: jdbc:postgresql://localhost:5432/jircbot
username: jircbot
password: jircbotpass
2018-02-08 12:52:26 +03:00
# for MySQL
# dataSource:
# driverClassName: com.mysql.jdbc.Driver
2018-02-09 12:55:15 +03:00
# url: jdbc:mysql://localhost:3306/jircbot
2018-02-08 12:52:26 +03:00
# username: jircbot
# password: jircbotpass
hibernate:
2018-02-09 12:55:15 +03:00
# for PostgreSQL
dialect: org.hibernate.dialect.PostgreSQLDialect
2018-02-09 12:55:15 +03:00
# for MySQL
# dialect: org.hibernate.spatial.dialect.mysql.MySQLSpatialDialect
hbm2ddl.auto: update
show_sql: false
use_sql_comments: true
format_sql: true