We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb72ea4 commit f0088abCopy full SHA for f0088ab
2 files changed
src/main/resources/application.properties …c/main/resources/_application.propertiessrc/main/resources/application.properties renamed to src/main/resources/_application.properties
src/main/resources/application.yml
@@ -0,0 +1,23 @@
1
+spring:
2
+ datasource:
3
+ url: jdbc:mysql://blogapi-db:3306/blogapi?useSSL=false&serverTimezone=UTC&allowPublicKeyRetrieval=true
4
+ username: root
5
+ password: root
6
+ jpa:
7
+ hibernate:
8
+ ddl-auto: none
9
+ show-sql: true
10
+ properties:
11
12
+ dialect: org.hibernate.dialect.MySQL5Dialect
13
+ jackson:
14
+ serialization:
15
+ WRITE_DATES_AS_TIMESTAMPS: false
16
+ time-zone: UTC
17
+
18
+app:
19
+ jwtSecret: secret
20
+ jwtExpirationInMs: 3600000
21
22
+cors:
23
+ allowedOrings: '*'
0 commit comments