-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.yml
More file actions
36 lines (30 loc) · 892 Bytes
/
Copy pathapplication.yml
File metadata and controls
36 lines (30 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
spring:
application:
name: my-shopware-app
# Database configuration (SQLite for simplicity)
datasource:
url: jdbc:sqlite:shopware_app.db
driver-class-name: org.sqlite.JDBC
hikari:
maximum-pool-size: 1
connection-timeout: 5000
data-source-properties:
foreign_keys: true
busy_timeout: 5000
journal_mode: WAL
jpa:
database-platform: org.hibernate.community.dialect.SQLiteDialect
hibernate:
ddl-auto: none # Let Liquibase handle schema
open-in-view: false
# App Server configuration
app-server:
# DEVELOPMENT ONLY - Set to true in production
ssl-only: false
# DEVELOPMENT ONLY - Allows localhost testing
map-localhost-ip-to-localhost-domain-name: true
# Enable HTTP request/response logging for debugging
http-request-response-logging-enabled: true
# Server configuration
server:
port: 8080