31 lines
1.2 KiB
Properties
31 lines
1.2 KiB
Properties
server.port=${PORT:8080}
|
|
logging.level.org.atmosphere=warn
|
|
spring.mustache.check-template-location=false
|
|
|
|
# Launch the default browser when starting the application in development mode
|
|
vaadin.launch-browser=true
|
|
# To improve the performance during development.
|
|
# For more information https://vaadin.com/docs/latest/flow/integrations/spring/configuration#special-configuration-parameters
|
|
vaadin.allowed-packages=com.vaadin,org.vaadin,de.assecutor.votianlt
|
|
|
|
# Open-in-view is only needed if you use lazy-loaded entities in your Flow views.
|
|
spring.jpa.open-in-view=false
|
|
|
|
# MongoDB
|
|
spring.data.mongodb.uri=mongodb://192.168.180.25:27017/votianlt
|
|
|
|
# Mail Configuration
|
|
mail.smtp.username=your-email@gmail.com
|
|
mail.smtp.password=your-password
|
|
mail.smtp.host=smtp.gmail.com
|
|
mail.smtp.port=587
|
|
|
|
# WebSocket and STOMP Configuration
|
|
# WebSocket message size limits (in bytes)
|
|
spring.websocket.servlet.max-text-message-buffer-size=8192
|
|
spring.websocket.servlet.max-binary-message-buffer-size=8192
|
|
# Enable STOMP over WebSocket
|
|
spring.websocket.stomp.enabled=true
|
|
# STOMP heartbeat settings (in milliseconds)
|
|
spring.websocket.stomp.heartbeat.outgoing=10000
|
|
spring.websocket.stomp.heartbeat.incoming=10000 |