Skip to content

Latest commit

 

History

History
executable file
·
45 lines (23 loc) · 646 Bytes

README.markdown

File metadata and controls

executable file
·
45 lines (23 loc) · 646 Bytes

MovieBuddy

Finatra requires either maven or sbt to build and run your app.

SBT Instructions

Runs your app on port 7070

sbt run
# or sbt ~re-start

Testing

sbt test

Packaging (fatjar)

sbt assembly

Maven Instructions

Runs your app on port 7070

mvn scala:run

Testing

mvn test

Packaging (fatjar)

mvn package

Heroku

To put on heroku

heroku create
git push heroku master

To run anywhere else

java -jar target/*-0.0.1-SNAPSHOT-jar-with-dependencies.jar