Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ashwanthkumar/text2event-server
https://github.com/ashwanthkumar/text2event-server
Last synced: about 7 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/ashwanthkumar/text2event-server
- Owner: ashwanthkumar
- License: mit
- Created: 2014-10-12T18:47:04.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-12T18:47:19.000Z (about 10 years ago)
- Last Synced: 2024-04-14T09:19:02.687Z (7 months ago)
- Language: Scala
- Size: 102 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# scala-getting-started
A barebones Scala app, which can easily be deployed to Heroku.
This application support the [Getting Started with Scala on Heroku](https://devcenter.heroku.com/articles/getting-started-with-scala) article - check it out.
## Running Locally
Make sure you have Scala and sbt installed. Also, install the [Heroku Toolbelt](https://toolbelt.heroku.com/).
```sh
$ 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](http://localhost:5000/).
## Deploying to Heroku
```sh
$ heroku create
$ git push heroku master
$ heroku open
```## Documentation
For more information about using Scala on Heroku, see these Dev Center articles:
- [Scala on Heroku](https://devcenter.heroku.com/categories/scala)