A barebones Gradle app, which can easily be deployed to Heroku.
This application support the Getting Started with Gradle on Heroku article - check it out.
Make sure you have Java installed. Also, install the Heroku Toolbelt.
$ git clone https://github.com/heroku/gradle-getting-started.git
$ cd gradle-getting-started
$ ./gradlew stage
$ gradle build -x test;heroku local webYour app should now be running on localhost:5000.
If you're going to use a database, ensure you have a local .env file that reads something like this:
DATABASE_URL=postgres://localhost:5432/gradle_database_name
$ heroku create
$ git push heroku master
$ heroku openShow log of server:
heroku logs --tail --remote devfull test:
gradle clean testTtest Authentication:
gradle clean test --tests com.example.heroku.AuthenticationTest