Files
dokku/tests/apps/scala
Jose Diaz-Gonzalez 86795ddacc tests: run mvdan/shfmt on test runs
While I do not agree with _every_ style change, this will force Dokku to have consistent formatting across all shell scripts, which is arguably a Good Thing™.

The command used to reprocess everything is:

```shell
shfmt -l -bn -ci -i 2 -w .
```
2019-01-07 01:25:55 -05:00
..
2014-12-23 23:54:52 -08:00
2014-12-23 23:54:52 -08:00
2014-12-23 23:54:52 -08:00
2014-12-23 23:54:52 -08:00
2014-12-23 23:54:52 -08:00
2014-12-23 23:54:52 -08:00

scala-getting-started

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

This application support the Getting Started with Scala on Heroku article - check it out.

Running Locally

Make sure you have Scala and sbt installed. Also, install the Heroku Toolbelt.

$ git clone https://github.com/heroku/scala-getting-started.git
$ cd scala-getting-started
$ sbt compile stage
$ foreman start web

Your app should now be running on localhost:5000.

Deploying to Heroku

$ heroku create
$ git push heroku master
$ heroku open

Documentation

For more information about using Scala on Heroku, see these Dev Center articles: