π§
Work in progress
π·ββοΈ
β
π·
π§οΈ
π·
π§
π§
]
[
Shoppe Kotlin Multiplatform App
Kotlin and Ktor app, which can easily be deployed to Heroku.
This application supports the Getting Started with Java on Heroku article - check it out.
Running Locally
Make sure you have Java and Maven installed. Also, install the Heroku Toolbelt.
$ git clone https://github.com/orangy/ktor-heroku-start.git
$ cd ktor-heroku-start
$ gradlew install
$ heroku local:start
Your app should now be running on localhost:8080.
If you're going to use a database, ensure you have a local .env
file that reads something like this:
MONGO_URI=Your_Mongo_Database_Access_Key
PORT=YOUR_PORT
Deploying to Heroku
$ heroku create
$ git push heroku master
$ heroku open