File tree Expand file tree Collapse file tree 2 files changed +9
-17
lines changed
Expand file tree Collapse file tree 2 files changed +9
-17
lines changed Original file line number Diff line number Diff line change 1- spring.application.name =app
1+ spring.application.name =growit
22
3- spring.datasource.url =jdbc:h2:mem:testdb
4- spring.datasource.driver-class-name =org.h2.Driver
5- spring.datasource.username =sa
6- spring.datasource.password =1234
3+ spring.datasource.url =jdbc:postgresql://${SPRING_DATASOURCE_URL}:5432/growit
4+ spring.datasource.username =${SPRING_DATASOURCE_USERNAME}
5+ spring.datasource.password =${SPRING_DATASOURCE_PASSWORD}
6+ spring.datasource.driver-class-name =org.postgresql.Driver
77
8- spring.jpa.hibernate.ddl-auto =create
8+ spring.jpa.hibernate.ddl-auto =update
99spring.jpa.show-sql =true
10- spring.jpa.defer-datasource-initialization =true
11-
12- spring.h2.console.enabled =true
13- spring.h2.console.path =/h2-console
10+ spring.jpa.properties.hibernate.format_sql =true
11+ spring.jpa.database-platform =org.hibernate.dialect.PostgreSQLDialect
1412
1513jwt.expired-second =3600
16- jwt.secret-key =mySuperSecureKeyThatIsMoreThan32BytesLong123
1714jwt.refresh-expired-second =86400
15+ jwt.secret-key =${JWT_SECRET}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments