ersin-ertan / kotlin-getting-started

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

kotlin-getting-started

A barebones Kotlin app, which can easily be deployed to Heroku.

This application supports the Getting Started with Kotlin on Heroku article - check it out.

Deploy to Heroku

Running Locally

Make sure you have Java and Maven installed. Also, install the Heroku CLI.

$ git clone https://github.com/heroku/kotlin-getting-started.git
$ cd kotlin-getting-started
$ mvn install
$ heroku local:start

Your 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:

JDBC_DATABASE_URL=jdbc:postgresql://localhost:5432/java_database_name

Deploying to Heroku

$ heroku create
$ git push heroku master
$ heroku open

Documentation

For more information about using Java and Kotlin on Heroku, see these Dev Center articles:

About

License:MIT License


Languages

Language:HTML 72.7%Language:Kotlin 21.5%Language:CSS 5.8%