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 15, 2024
1 parent 6f7ac29 commit 064499c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@


spring.security.filter.order=2
spring.datasource.url=jdbc:mysql://mysql-aws.c7qoy8k4g03k.ap-south-1.rds.amazonaws.com/quiz-app-dev
spring.datasource.username=adminharsh
spring.datasource.password=root12345
spring.datasource.url=${DB_URL}
spring.datasource.username=${USERNAME}
spring.datasource.password=${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 protected]
spring.mail.password=dyxwysgcrtlszoys
spring.mail.username=${EMAIL}
spring.mail.password=${EMAIL_PASSWORD}
spring.mail.properties.mail.smtp.auth=true
spring.mail.properties.mail.smtp.starttls.enable=true

0 comments on commit 064499c

Please sign in to comment.