forked from usdot-jpo-ode/jpo-cvmanager
-
Notifications
You must be signed in to change notification settings - Fork 3
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 #57 from usdot-jpo-ode/build-file-updates
Added default application properties file
- Loading branch information
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
jpo-conflictvisualizer-api/src/main/resources/application.properties
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,44 @@ | ||
# Copy this file to application.properties in src/main/resources and fill in the mapbox style WMS endpoint, | ||
# including the user name, style ID, and access token | ||
# Don't commit the mapbox token to github! | ||
|
||
server.port=8081 | ||
spring.data.mongodb.database=ConflictMonitor | ||
spring.data.mongodb.host=${DOCKER_HOST_IP:localhost} | ||
spring.data.mongodb.port=27017 | ||
|
||
cmServerURL = ${CM_SERVER_URL:http://localhost:8082} | ||
mongoTimeoutMs = ${CM_MONGO_TIMEOUT_MS:5000} | ||
cors=* | ||
maximumResponseSize=${CM_MAXIMUM_RESPONSE_SIZE:10000} | ||
|
||
spring.main.allow-circular-references=true | ||
security.enabled=true | ||
# logging.level.org.keycloak=DEBUG | ||
|
||
|
||
load=false | ||
|
||
|
||
### General Email Settings | ||
|
||
#Email Broker Options: sendgrid , postmark, anything else will use generic SMTP mail server. | ||
emailBroker=${CM_EMAIL_BROKER} | ||
emailFromAddress=${CM_EMAIL_FROM_ADDRESS} | ||
|
||
|
||
### Spring Mail Settings | ||
spring.mail.host=localhost | ||
spring.mail.port=1025 | ||
spring.mail.properties.mail.smtp.auth=false | ||
spring.mail.properties.mail.smtp.starttls.enable=true | ||
|
||
|
||
|
||
### SendGrid Email Settings | ||
sendgrid.username=${CM_SENDGRID_USERNAME} | ||
sendgrid.password=${CM_SENDGRID_PASSWORD} | ||
|
||
|
||
### Postmark Email Settings | ||
postmark.api.secretKey=${CM_POSTMARK_SECRET_KEY} |