-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Eric Opoku
committed
Nov 7, 2024
1 parent
0ac0fbe
commit 2d6cf02
Showing
6 changed files
with
14 additions
and
13 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# =============================== | ||
# = DATA SOURCE | ||
# =============================== | ||
spring.datasource.url=${DATABASE_URL} | ||
spring.datasource.username=${DATABASE_USERNAME} | ||
spring.datasource.password=${DATABASE_PASSWORD} | ||
spring.datasource.url=${DATABASE_URL:jdbc:postgresql://server.ericopoku.com:5432/spring-boot-starter} | ||
spring.datasource.username=${DATABASE_USERNAME:sbs} | ||
spring.datasource.password=${DATABASE_PASSWORD:sbs@SBS123!} | ||
spring.datasource.driverClassName=org.postgresql.Driver | ||
spring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialect | ||
spring.datasource.hikari.schema=spring_boot_starter | ||
|
@@ -22,8 +22,8 @@ logging.level.com.developersboard=debug | |
# =============================== | ||
spring.mail.host=${EMAIL_HOST:smtp.gmail.com} | ||
spring.mail.port=${EMAIL_PORT:587} | ||
spring.mail.username=${EMAIL_USERNAME} | ||
spring.mail.password=${EMAIL_PASSWORD} | ||
spring.mail.username=${EMAIL_USERNAME:[email protected]} | ||
spring.mail.password=${EMAIL_PASSWORD:aulimfkexduffmbx} | ||
spring.mail.protocol=${EMAIL_PROTOCOL:smtp} | ||
# Other properties | ||
spring.mail.properties.mail.smtp.auth=true | ||
|
@@ -37,5 +37,6 @@ spring.mail.properties.mail.smtp.starttls.enable=true | |
spring.mail.properties.mail.smtp.ssl.enable=true | ||
|
||
spring.h2.console.enabled=false | ||
spring.liquibase.enabled=false | ||
|
||
server.forward-headers-strategy=framework |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
spring.profiles.active=${SPRING_PROFILES_ACTIVE:development} | ||
spring.profiles.active=${SPRING_PROFILES_ACTIVE:production} | ||
# System properties | ||
system.name=${SYSTEM_NAME:Spring Boot Starter} | ||
system.email=${SYSTEM_EMAIL:[email protected]} | ||
|
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#! /bin/bash | ||
./wait-for-it.sh postgres-db:5434 -t 60 | ||
./wait-for-it.sh postgres-db:5432 -t 60 | ||
java -Djava.security.egd=file:/dev/./urandom -cp .:lib/* com.developersboard.SpringBootStarterApplication |