Skip to content

Collection of cool features which might be especially useful while developing spring boot application on heroku ☁️

License

Notifications You must be signed in to change notification settings

kilmajster/heroku-spring-boot-starter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

91 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Heroku spring boot starter

This starter is built to simplify https enforcing in projects hosted on heroku cloud platform ☁️

Build status Coverage Status GitHub last commit Maven Central StackShare MIT license

🛠 Configuration

All you have to do is to add dependency to your project and enable features in application.properties file 😎

maven

<dependency>
  <groupId>io.github.createam-labs</groupId>
  <artifactId>spring-boot-starter-heroku</artifactId>
  <version>1.1</version>
</dependency>

gradle

compile('io.github.createam-labs:spring-boot-starter-heroku:1.1')

Https enforcing

In application.properties add following:

heroku.enforceHttps=true

Examples

Application which works with this starter can be found here
Source code of example app can be found here

Release notes

v1.1

  • fixed broken release 🤦‍♂️

v1.0

  • added support for mustache templates
  • added tests

v0.1.2

  • fixed redirection address after https enforcing

v0.1.1

  • initial release

License

MIT