Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Apply suggestions from code review
  • Loading branch information
edmorley authored Dec 10, 2024
commit 408dffa4d986891b7c3fe7ad395d6df7bb1bb9d2
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A barebones Java app, which can easily be deployed to Heroku.
This application supports the tutorials for both the [Cedar and Fir generations](https://devcenter.heroku.com/articles/generations) of the Heroku platform. You can check them out here:

- [Getting Started on Heroku with Java](https://devcenter.heroku.com/articles/getting-started-with-java)
- [Getting Started on Heroku Fir with Java (maven)](https://devcenter.heroku.com/articles/getting-started-with-java-maven-fir)
- [Getting Started on Heroku Fir with Java (Maven)](https://devcenter.heroku.com/articles/getting-started-with-java-maven-fir)

## Deploying to Heroku

Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h1>Getting Started with Java on Heroku</h1>
<h3><span class="glyphicon glyphicon-info-sign"></span> How this sample app works</h3>
<ul>
<li>This app was deployed to Heroku using Git.</li>
<li>When Heroku received the source code, it fetched all the dependencies in the <a href="https://github.com/heroku/java-getting-started/blob/main/pom.xml">pom.xml</a>, creating a deployable build artifact.</li>
<li>When Heroku received the source code, it fetched all the dependencies in <a href="https://github.com/heroku/java-getting-started/blob/main/pom.xml">pom.xml</a>, creating a deployable build artifact.</li>
<li>The platform then spins up a dyno, a lightweight container that provides an isolated environment in which the build artifact can be mounted and executed.</li>
<li>You can scale your app, manage it, and deploy over <a href="https://addons.heroku.com/">150 add-on services</a>, from the Dashboard or CLI.</li>
</ul>
Expand All @@ -43,7 +43,7 @@ <h3><span class="glyphicon glyphicon-link"></span> Helpful Links</h3>
<li><a href="https://www.heroku.com/home">Heroku</a></li>
<li><a href="https://devcenter.heroku.com/">Heroku Dev Center</a></li>
<li><a href="https://devcenter.heroku.com/articles/getting-started-with-java">Getting Started on Heroku with Java</a></li>
<li><a href="https://devcenter.heroku.com/articles/getting-started-with-java">Getting Started on Heroku Fir with Java</a></li>
<li><a href="https://devcenter.heroku.com/articles/getting-started-with-java-maven-fir">Getting Started on Heroku Fir with Java</a></li>
<li><a href="https://devcenter.heroku.com/articles/deploying-java">Deploying Java Apps on Heroku</a></li>
</ul>
</div>
Expand Down