# =================================================================== # Spring Boot configuration for the "dev" profile. # # This configuration overrides the application.yml file. # # More information on profiles: https://www.jhipster.tech/profiles/ # More information on configuration properties: https://www.jhipster.tech/common-application-properties/ # =================================================================== # =================================================================== # Standard Spring Boot properties. # Full reference is available at: # http://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html # =================================================================== logging: level: ROOT: DEBUG tech.jhipster: DEBUG org.hibernate.SQL: DEBUG com.aws.pattern.myapp: DEBUG spring: devtools: restart: enabled: true additional-exclude: static/** livereload: enabled: false # we use Webpack dev server + BrowserSync for livereload jackson: serialization: indent-output: true messages: cache-duration: PT1S # 1 second, see the ISO 8601 standard thymeleaf: cache: false sleuth: sampler: probability: 1 # report 100% of traces zipkin: # Use the "zipkin" Maven profile to have the Spring Cloud Zipkin dependencies base-url: http://localhost:9411 enabled: false locator: discovery: enabled: true server: port: 8080 # =================================================================== # JHipster specific properties # # Full reference is available at: https://www.jhipster.tech/common-application-properties/ # =================================================================== jhipster: # CORS is disabled by default on microservices, as you should access them through a gateway. # If you want to enable it, please uncomment the configuration below. # cors: # allowed-origins: "http://localhost:9000" # allowed-methods: "*" # allowed-headers: "*" # exposed-headers: "Authorization,Link,X-Total-Count" # allow-credentials: true # max-age: 1800 security: authentication: jwt: # This token must be encoded using Base64 and be at least 256 bits long (you can type `openssl rand -base64 64` on your command line to generate a 512 bits one) base64-secret: OTZiMzQxYjU5ZjE0ZDVhMTA5YmE5YmNlM2JmODQ5YTA1OTJlMGYxMWU4YmZmYzFkZGNmNTMxZTdhOTFiMGMxZDI2ZTk4MDU0YjNjMDkyMGUzNThkODU4ZDdiOTU5NDU4M2NlZDdmMzg3MTEwMzMwYzhlYjIzOWVkMTc2NjI5ODc= # Token is valid 24 hours token-validity-in-seconds: 86400 token-validity-in-seconds-for-remember-me: 2592000 logging: use-json-format: false # By default, logs are not in Json format logstash: # Forward logs to logstash over a socket, used by LoggingConfiguration enabled: false host: localhost port: 5000 queue-size: 512 # =================================================================== # Application specific properties # Add your own application properties here, see the ApplicationProperties class # to have type-safe configuration, like in the JHipsterProperties above # # More documentation is available at: # https://www.jhipster.tech/common-application-properties/ # =================================================================== # application: