Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ninnemana/finatra_example
- Owner: ninnemana
- Created: 2014-03-25T16:29:07.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-03-26T14:57:37.000Z (over 10 years ago)
- Last Synced: 2024-12-01T12:16:28.097Z (21 days ago)
- Language: CSS
- Size: 1 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
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