Skip to content

Commit

Permalink
Update application.properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Harsh-Srivastav123 authored Feb 16, 2024
1 parent 662d346 commit 5ce011f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

spring.security.filter.order=2
spring.datasource.url=${DB_URL}
spring.datasource.username=${USERNAME}
spring.datasource.password=${PASSWORD}
spring.datasource.username=${{secrets.USERNAME}}
spring.datasource.password=${{secrets.PASSWORD}}
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL8Dialect

Expand All @@ -25,7 +25,7 @@ spring.devtools.livereload.enabled=false

spring.mail.host=smtp.gmail.com
spring.mail.port=587
spring.mail.username=${EMAIL}
spring.mail.password=${EMAIL_PASSWORD}
spring.mail.username=${{secrets.EMAIL}}
spring.mail.password=${{secrets.EMAIL_PASSWORD}}
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true

0 comments on commit 5ce011f

Please sign in to comment.