# java-getting-started **Repository Path**: javabedlamite/java-getting-started ## Basic Information - **Project Name**: java-getting-started - **Description**: Getting Started with Java on Heroku - **Primary Language**: HTML - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-03-04 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # java-getting-started [![CircleCI](https://circleci.com/gh/heroku/java-getting-started.svg?style=svg)](https://circleci.com/gh/heroku/java-getting-started) A barebones Java app, which can easily be deployed to Heroku. This application supports 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 CLI](https://cli.heroku.com/). ```sh $ git clone https://github.com/heroku/java-getting-started.git $ cd java-getting-started $ mvn install $ heroku local:start ``` 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)