-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from ddiasss/feature/parameterized-email-list
Closes #43 replacing .properties file to yaml and adding fixed cc
- Loading branch information
Showing
11 changed files
with
80 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
spring: | ||
datasource: | ||
driverClassName: com.mysql.cj.jdbc.Driver | ||
password: '' | ||
username: root | ||
url: jdbc:mysql://localhost:3306/wca_development | ||
jpa: | ||
database-platform: org.hibernate.dialect.MySQL5InnoDBDialect | ||
mail: | ||
host: ${mail.host} | ||
username: ${mail.username} | ||
port: '587' | ||
properties: | ||
mail: | ||
smtp: | ||
starttls: | ||
enable: 'true' | ||
auth: 'true' | ||
password: ${mail.password} | ||
|
||
service: | ||
mail: | ||
send: 'false' | ||
from: ${mail.from} | ||
subject: Sanity Check |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
spring: | ||
datasource: | ||
driverClassName: com.mysql.cj.jdbc.Driver | ||
password: ${connectopm.dbwca} | ||
username: ${user.dbwca} | ||
url: ${connectopm.dbwca} | ||
jpa: | ||
database-platform: org.hibernate.dialect.MySQL5InnoDBDialect | ||
mail: | ||
host: ${mail.host} | ||
username: ${mail.username} | ||
port: '587' | ||
properties: | ||
mail: | ||
smtp: | ||
starttls: | ||
enable: 'true' | ||
auth: 'true' | ||
password: ${mail.password} | ||
|
||
service: | ||
mail: | ||
send: 'true' | ||
from: ${mail.from} | ||
subject: Sanity Check | ||
cc: [email protected] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
spring: | ||
datasource: | ||
username: root | ||
url: jdbc:mysql://localhost:8306/wca_development | ||
driverClassName: com.mysql.cj.jdbc.Driver | ||
password: '' | ||
jpa: | ||
database-platform: org.hibernate.dialect.MySQL5InnoDBDialect | ||
|
||
service: | ||
mail: | ||
send: 'true' | ||
from: [email protected] | ||
subject: Sanity Check | ||
cc: [email protected], [email protected], [email protected] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
spring: | ||
application: | ||
name: WCA Sanity Check | ||
profiles: | ||
active: local # Default profile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters