|
| 1 | +spring.profiles: postgres |
| 2 | + |
| 3 | +# Details about MySQL configuration on Travis CI: https://docs.travis-ci.com/user/database-setup/#postgresql |
| 4 | +spring.datasource.url: jdbc:postgresql://localhost:5432/mystamps |
| 5 | +spring.datasource.username: postgres |
| 6 | +spring.datasource.password: |
| 7 | +spring.datasource.driver-class-name: org.postgresql.Driver |
| 8 | +spring.datasource.initialize: false |
| 9 | + |
| 10 | +# @todo #1054 Extract part of spring.messages configuration to a common profile |
| 11 | +spring.messages.cache-seconds: -1 |
| 12 | +spring.messages.fallback-to-system-locale: false |
| 13 | +spring.messages.basename: \ |
| 14 | + ru/mystamps/i18n/Messages, \ |
| 15 | + ru/mystamps/i18n/ValidationMessages, \ |
| 16 | + ru/mystamps/i18n/SpringSecurityMessages, \ |
| 17 | + ru/mystamps/i18n/MailTemplates |
| 18 | + |
| 19 | +# @todo #1054 Extract part of Thymeleaf configuration to a common profile |
| 20 | +spring.thymeleaf.mode: HTML |
| 21 | +spring.thymeleaf.prefix: /WEB-INF/views/ |
| 22 | +spring.thymeleaf.suffix: .html |
| 23 | +spring.thymeleaf.cache: true |
| 24 | + |
| 25 | +# @todo #1054 Introduce "mailgun-mock" profile |
| 26 | +mailgun.endpoint: http://127.0.0.1:8888/mailgun/send-message |
| 27 | +mailgun.password: secret |
| 28 | + |
| 29 | +# @todo #1054 Introduce profiles for liquibase contexts |
| 30 | +liquibase.contexts: scheme, init-data, test-data |
| 31 | +liquibase.change-log: classpath:/liquibase/changelog.xml |
| 32 | + |
| 33 | +logging.level.: INFO |
| 34 | +logging.level.ru.mystamps: INFO |
| 35 | +logging.level.ru.mystamps.web.support.spring.security.SessionLocaleResolverAwareFilter: INFO |
| 36 | +logging.level.liquibase: WARN |
| 37 | +logging.level.org.springframework.web.servlet.handler.SimpleUrlHandlerMapping: WARN |
| 38 | +logging.level.org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping: WARN |
| 39 | + |
| 40 | +app.use-cdn: false |
| 41 | + |
| 42 | +# @todo #1054 Extract list of exclusions to a common profile |
| 43 | +# Full list of autoconfiguration classes: |
| 44 | +# http://docs.spring.io/spring-boot/docs/1.5.x/reference/html/auto-configuration-classes.html |
| 45 | +# The difference between test profile is that we don't need H2ConsoleAutoConfiguration |
| 46 | +spring.autoconfigure.exclude: \ |
| 47 | + org.springframework.boot.autoconfigure.jms.activemq.ActiveMQAutoConfiguration \ |
| 48 | + , org.springframework.boot.autoconfigure.aop.AopAutoConfiguration \ |
| 49 | + , org.springframework.boot.autoconfigure.jms.artemis.ArtemisAutoConfiguration \ |
| 50 | + , org.springframework.boot.autoconfigure.batch.BatchAutoConfiguration \ |
| 51 | + , org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration \ |
| 52 | + , org.springframework.boot.autoconfigure.cassandra.CassandraAutoConfiguration \ |
| 53 | + , org.springframework.boot.autoconfigure.data.cassandra.CassandraDataAutoConfiguration \ |
| 54 | + , org.springframework.boot.autoconfigure.data.cassandra.CassandraRepositoriesAutoConfiguration \ |
| 55 | + , org.springframework.boot.autoconfigure.cloud.CloudAutoConfiguration \ |
| 56 | + , org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration \ |
| 57 | + , org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration \ |
| 58 | + , org.springframework.boot.autoconfigure.couchbase.CouchbaseAutoConfiguration \ |
| 59 | + , org.springframework.boot.autoconfigure.data.couchbase.CouchbaseDataAutoConfiguration \ |
| 60 | + , org.springframework.boot.autoconfigure.data.couchbase.CouchbaseRepositoriesAutoConfiguration \ |
| 61 | + , org.springframework.boot.autoconfigure.mail.MailSenderAutoConfiguration \ |
| 62 | + , org.springframework.boot.autoconfigure.mail.MailSenderValidatorAutoConfiguration \ |
| 63 | + , org.springframework.boot.autoconfigure.mobile.DeviceDelegatingViewResolverAutoConfiguration \ |
| 64 | + , org.springframework.boot.autoconfigure.mobile.DeviceResolverAutoConfiguration \ |
| 65 | + , org.springframework.boot.autoconfigure.data.elasticsearch.ElasticsearchAutoConfiguration \ |
| 66 | + , org.springframework.boot.autoconfigure.data.elasticsearch.ElasticsearchDataAutoConfiguration \ |
| 67 | + , org.springframework.boot.autoconfigure.data.elasticsearch.ElasticsearchRepositoriesAutoConfiguration \ |
| 68 | + , org.springframework.boot.autoconfigure.ldap.embedded.EmbeddedLdapAutoConfiguration \ |
| 69 | + , org.springframework.boot.autoconfigure.mongo.embedded.EmbeddedMongoAutoConfiguration \ |
| 70 | + , org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration \ |
| 71 | + , org.springframework.boot.autoconfigure.social.FacebookAutoConfiguration \ |
| 72 | + , org.springframework.boot.autoconfigure.security.FallbackWebSecurityAutoConfiguration \ |
| 73 | + , org.springframework.boot.autoconfigure.flyway.FlywayAutoConfiguration \ |
| 74 | + , org.springframework.boot.autoconfigure.freemarker.FreeMarkerAutoConfiguration \ |
| 75 | + , org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration \ |
| 76 | + , org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration \ |
| 77 | + , org.springframework.boot.autoconfigure.hazelcast.HazelcastAutoConfiguration \ |
| 78 | + , org.springframework.boot.autoconfigure.hazelcast.HazelcastJpaDependencyAutoConfiguration \ |
| 79 | + , org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration \ |
| 80 | + , org.springframework.boot.autoconfigure.web.HttpEncodingAutoConfiguration \ |
| 81 | + , org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration \ |
| 82 | + , org.springframework.boot.autoconfigure.integration.IntegrationAutoConfiguration \ |
| 83 | + , org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration \ |
| 84 | + , org.springframework.boot.autoconfigure.elasticsearch.jest.JestAutoConfiguration \ |
| 85 | + , org.springframework.boot.autoconfigure.jms.JmsAutoConfiguration \ |
| 86 | + , org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration \ |
| 87 | + , org.springframework.boot.autoconfigure.jms.JndiConnectionFactoryAutoConfiguration \ |
| 88 | + , org.springframework.boot.autoconfigure.jdbc.JndiDataSourceAutoConfiguration \ |
| 89 | + , org.springframework.boot.autoconfigure.jooq.JooqAutoConfiguration \ |
| 90 | + , org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration \ |
| 91 | + , org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration \ |
| 92 | + , org.springframework.boot.autoconfigure.kafka.KafkaAutoConfiguration \ |
| 93 | + , org.springframework.boot.autoconfigure.ldap.LdapAutoConfiguration \ |
| 94 | + , org.springframework.boot.autoconfigure.data.ldap.LdapDataAutoConfiguration \ |
| 95 | + , org.springframework.boot.autoconfigure.data.ldap.LdapRepositoriesAutoConfiguration \ |
| 96 | + , org.springframework.boot.autoconfigure.social.LinkedInAutoConfiguration \ |
| 97 | + , org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration \ |
| 98 | + , org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration \ |
| 99 | + , org.springframework.boot.autoconfigure.data.mongo.MongoRepositoriesAutoConfiguration \ |
| 100 | + , org.springframework.boot.autoconfigure.mustache.MustacheAutoConfiguration \ |
| 101 | + , org.springframework.boot.autoconfigure.data.neo4j.Neo4jDataAutoConfiguration \ |
| 102 | + , org.springframework.boot.autoconfigure.data.neo4j.Neo4jRepositoriesAutoConfiguration \ |
| 103 | + , org.springframework.boot.autoconfigure.security.oauth2.OAuth2AutoConfiguration \ |
| 104 | + , org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration \ |
| 105 | + , org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration \ |
| 106 | + , org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration \ |
| 107 | + , org.springframework.boot.autoconfigure.reactor.ReactorAutoConfiguration \ |
| 108 | + , org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration \ |
| 109 | + , org.springframework.boot.autoconfigure.data.redis.RedisRepositoriesAutoConfiguration \ |
| 110 | + , org.springframework.boot.autoconfigure.data.rest.RepositoryRestMvcAutoConfiguration \ |
| 111 | + , org.springframework.boot.autoconfigure.sendgrid.SendGridAutoConfiguration \ |
| 112 | + , org.springframework.boot.autoconfigure.session.SessionAutoConfiguration \ |
| 113 | + , org.springframework.boot.autoconfigure.mobile.SitePreferenceAutoConfiguration \ |
| 114 | + , org.springframework.boot.autoconfigure.social.SocialWebAutoConfiguration \ |
| 115 | + , org.springframework.boot.autoconfigure.solr.SolrAutoConfiguration \ |
| 116 | + , org.springframework.boot.autoconfigure.data.solr.SolrRepositoriesAutoConfiguration \ |
| 117 | + , org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration \ |
| 118 | + , org.springframework.boot.autoconfigure.social.TwitterAutoConfiguration \ |
| 119 | + , org.springframework.boot.autoconfigure.webservices.WebServicesAutoConfiguration \ |
| 120 | + , org.springframework.boot.autoconfigure.websocket.WebSocketAutoConfiguration \ |
| 121 | + , org.springframework.boot.autoconfigure.websocket.WebSocketMessagingAutoConfiguration \ |
| 122 | + , org.springframework.boot.autoconfigure.jdbc.XADataSourceAutoConfiguration \ |
| 123 | + \ |
| 124 | + , org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration |
0 commit comments