Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ninnemana/finatra_example

Example Finatra project for the weekly summit
https://github.com/ninnemana/finatra_example

Last synced: 21 days ago
JSON representation

Example Finatra project for the weekly summit

Awesome Lists containing this project

README

        

# example

Finatra requires either [maven](http://maven.apache.org/) or [sbt](http://www.scala-sbt.org/release/docs/Getting-Started/Setup.html) to build and run your app.

## SBT Instructions

### Runs your app on port 7070

sbt run

### 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