mirror of
https://github.com/tencentmusic/supersonic.git
synced 2026-04-24 08:24:19 +08:00
30 lines
905 B
YAML
30 lines
905 B
YAML
spring:
|
|
datasource:
|
|
driver-class-name: org.h2.Driver
|
|
url: jdbc:h2:mem:semantic;DATABASE_TO_UPPER=false;QUERY_TIMEOUT=30
|
|
username: root
|
|
password: semantic
|
|
sql:
|
|
init:
|
|
schema-locations: classpath:db/schema-h2.sql,classpath:db/schema-h2-demo.sql
|
|
data-locations: classpath:db/data-h2.sql,classpath:db/data-h2-demo.sql
|
|
h2:
|
|
console:
|
|
path: /h2-console/semantic
|
|
enabled: true
|
|
|
|
### Comment out following lines if using MySQL
|
|
#spring:
|
|
# datasource:
|
|
# driver-class-name: com.mysql.cj.jdbc.Driver
|
|
# url: jdbc:mysql://localhost:3306/s2_database?user=root
|
|
# username: root
|
|
# password:
|
|
# sql:
|
|
# init:
|
|
# schema-locations: classpath:db/schema-mysql.sql,classpath:db/schema-mysql-demo.sql
|
|
# data-locations: classpath:db/data-mysql.sql,classpath:db/data-mysql-demo.sql
|
|
# h2:
|
|
# console:
|
|
# path: /h2-console/semantic
|
|
# enabled: true |