Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seraphroy/cs56-w16-lab08
https://github.com/seraphroy/cs56-w16-lab08
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/seraphroy/cs56-w16-lab08
- Owner: SeraphRoy
- License: mit
- Created: 2016-02-26T05:55:02.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-26T06:08:10.000Z (almost 9 years ago)
- Last Synced: 2024-11-14T23:39:26.153Z (about 2 months ago)
- Language: Shell
- Size: 70.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# java-getting-started
A barebones Java app, which can easily be deployed to Heroku.
This application support the [Getting Started with Java on Heroku](https://devcenter.heroku.com/articles/getting-started-with-java) article - check it out.
[![Deploy to Heroku](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy)
## Running Locally
Make sure you have Java and Maven installed. Also, install the [Heroku Toolbelt](https://toolbelt.heroku.com/).
```sh
$ git clone https://github.com/heroku/java-getting-started.git
$ cd java-getting-started
$ mvn install
$ foreman start web
```Your app should now be running on [localhost:5000](http://localhost:5000/).
If you're going to use a database, ensure you have a local `.env` file that reads something like this:
```
DATABASE_URL=postgres://localhost:5432/java_database_name
```## Deploying to Heroku
```sh
$ heroku create
$ git push heroku master
$ heroku open
```## Documentation
For more information about using Java on Heroku, see these Dev Center articles:
- [Java on Heroku](https://devcenter.heroku.com/categories/java)