Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more example projects to readme and website #866

Merged
merged 1 commit into from
Apr 7, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,17 @@ Example Applications
- Read more about using this application on the [`DatastoreExample` docs page](http://googlecloudplatform.github.io/gcloud-java/apidocs/?com/google/gcloud/examples/datastore/DatastoreExample.html).
- [`DnsExample`](./gcloud-java-examples/src/main/java/com/google/gcloud/examples/dns/DnsExample.java) - A simple command line interface for Cloud DNS
- Read more about using this application on the [`DnsExample` docs page](http://googlecloudplatform.github.io/gcloud-java/apidocs/?com/google/gcloud/examples/dns/DnsExample.html).
- [`Flexible Environment/Datastore example`](https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/managed_vms/datastore) - A simple app that uses Cloud Datastore to list the last 10 IP addresses that visited your site.
- Read about how to run the application [here](https://github.com/GoogleCloudPlatform/java-docs-samples/blob/master/managed_vms/README.md).
- [`Flexible Environment/Storage example`](https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/managed_vms/cloudstorage) - An app that uploads files to a public Cloud Storage bucket on the App Engine Flexible Environment runtime.
- [`ResourceManagerExample`](./gcloud-java-examples/src/main/java/com/google/gcloud/examples/resourcemanager/ResourceManagerExample.java) - A simple command line interface providing some of Cloud Resource Manager's functionality
- Read more about using this application on the [`ResourceManagerExample` docs page](http://googlecloudplatform.github.io/gcloud-java/apidocs/?com/google/gcloud/examples/resourcemanager/ResourceManagerExample.html).
- [`SparkDemo`](https://github.com/GoogleCloudPlatform/java-docs-samples/blob/master/managed_vms/sparkjava) - An example of using gcloud-java-datastore from within the SparkJava and App Engine Managed VM frameworks.
- [`SparkDemo`](https://github.com/GoogleCloudPlatform/java-docs-samples/blob/master/managed_vms/sparkjava) - An example of using `gcloud-java-datastore` from within the SparkJava and App Engine Flexible Environment frameworks.
- Read about how it works on the example's [README page](https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/managed_vms/sparkjava#how-does-it-work).
- [`StorageExample`](./gcloud-java-examples/src/main/java/com/google/gcloud/examples/storage/StorageExample.java) - A simple command line interface providing some of Cloud Storage's functionality
- Read more about using this application on the [`StorageExample` docs page](http://googlecloudplatform.github.io/gcloud-java/apidocs/?com/google/gcloud/examples/storage/StorageExample.html).
- [`TaskList`](https://github.com/GoogleCloudPlatform/java-docs-samples/blob/master/datastore/src/main/java/com/google/datastore/snippets/TaskList.java) - A command line application that uses Cloud Datastore to manage a to-do list.
- Read about how to run the application on its [README page](https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/datastore).

Specifying a Project ID
-----------------------
Expand Down
15 changes: 13 additions & 2 deletions src/site/resources/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -178,10 +178,21 @@ <h3 class="block-title">Examples</h3>

<ul>
<li>
<a href="https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/managed_vms/sparkjava"><code>SparkJava demo</code></a> - Uses gcloud-java with App Engine Managed VMs, Datastore, and SparkJava.
<a href="https://github.com/GoogleCloudPlatform/getting-started-java/tree/master/bookshelf"><code>Bookshelf</code></a> - An App Engine app that manages a virtual bookshelf using gcloud-java libraries for Datastore and Storage.
</li>

<li>
<a href="https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/managed_vms/datastore"><code>Flexible Environment/Datastore example</code></a> - A simple app that uses Cloud Datastore to list the last 10 IP addresses that visited your site. Read about how to run the application <a href="https://github.com/GoogleCloudPlatform/java-docs-samples/blob/master/managed_vms/README.md">here</a>.
</li>
<li>
<a href="https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/managed_vms/cloudstorage"><code>Flexible Environment/Storage example</code></a> - An app that uploads files to a public Cloud Storage bucket on the App Engine Flexible Environment runtime.
</li>
<li>
<a href="https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/managed_vms/sparkjava"><code>SparkJava demo</code></a> - Uses gcloud-java with App Engine Flexible Environment, Datastore, and SparkJava.
</li>
<li>
<a href="https://github.com/GoogleCloudPlatform/getting-started-java/tree/master/bookshelf"><code>Bookshelf</code></a> - An App Engine app that manages a virtual bookshelf using gcloud-java libraries for Datastore and Storage.
<a href="https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/datastore"><code>TaskList</code></a> - An command line app that manages a to-do list using Cloud Datastore.
</li>
</ul>
</div>
</section>
Expand Down