|
4 | 4 | @renderProject(project: ExampleProject) = { |
5 | 5 | <tr> |
6 | 6 | <td><a href="@project.downloadUrl" target="_blank">@project.displayName</a></td> |
7 | | - <td><a href="@project.downloadUrl" target="_blank">Download (zip)</a></td> |
8 | 7 | <td><a href="@project.gitHubUrl" target="_blank">View on GitHub</a></td> |
9 | 8 | </tr> |
10 | 9 | } |
@@ -63,31 +62,8 @@ <h3><span>»</span> Try the Hello World Tutorial</h3> |
63 | 62 |
|
64 | 63 | <div class="try-section"> |
65 | 64 | <h2>Already know a bit about Play?</h2> |
66 | | - <p>Lightbend Tech Hub offers a variety of Play example projects for Java and Scala that are focused on a particular use case. The downloadable zip files include everything you need, including <a href="//www.scala-sbt.org/index.html">sbt</a>, Play Framework, and an HTTP server. The examples also support <a href="//docs.gradle.org/current/userguide/play_plugin.html">Gradle</a>.</p> |
| 65 | + <p>Lightbend offers a variety of <a href="https://www.lightbend.com/akka-platform/developers#example-projects">Play example projects for Java and Scala</a> that are focused on a particular use case. These include everything you need, including <a href="//www.scala-sbt.org/index.html">sbt</a>, Play Framework, and an HTTP server. The examples also support <a href="//docs.gradle.org/current/userguide/play_plugin.html">Gradle</a>.</p> |
67 | 66 | <p>If you are ready to start your own project and have sbt installed, you can create a Play project from the command line.</p> |
68 | | - <div class="try-option"> |
69 | | - <h3><span>»</span> Try a focused example</h3> |
70 | | - <div class="try-option-content"> |
71 | | - <p>Follow these steps to try an example project:</p> |
72 | | - <ol> |
73 | | - <li>Check that your Java version is 8 or higher with the <code>java -version</code> command and if needed, install it from <a href="//www.oracle.com/technetwork/java/javase/downloads/index.html" rel="noopener">Oracle's site</a>. |
74 | | - <li>Choose an example from <a href="https://developer.lightbend.com/start/?group=play">Lightbend's Tech Hub</a>.</li> |
75 | | - <li>Click "CREATE A PROJECT FOR ME" to download the zipped project.</li> |
76 | | - <li>Unzip the project in a convenient location.</li> |
77 | | - <li>In a command window, navigate to the top level project directory.</li> |
78 | | - <li>Enter one of the following commands: |
79 | | - <ul> |
80 | | - <li>On macOS or Linux systems: <code>./sbt run</code> or <code>./gradlew runPlayBinary</code></li> |
81 | | - <li>On Windows systems: <code>sbt.bat run</code> or <code>gradlew.bat runPlayBinary</code></li> |
82 | | - </ul> |
83 | | - </li> |
84 | | - <li>The build tool downloads dependencies and compiles the project.</li> |
85 | | - <li>After the build finishes, enter the following URL in a browser to view the app: <a href="http://localhost:9000/">http://localhost:9000/</a></li> |
86 | | - |
87 | | - </ol> |
88 | | - <p>Check out the <code>README.md</code> file in the top level project directory to learn more about the example.</p> |
89 | | - </div> |
90 | | - </div> |
91 | 67 |
|
92 | 68 | <div class="try-option"> |
93 | 69 | <h3><span>»</span> Create a Play Java or Scala project using <code>sbt new</code></h3> |
|
0 commit comments