-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs(samples): add readme * address reviewer comments
- Loading branch information
1 parent
81b4511
commit 66135cf
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# How to run the samples | ||
|
||
1. Clone this repo and navigate to the `snippets` directory. | ||
```shell | ||
git clone https://github.com/googlepis/java-pubsub | ||
cd java-pubsub/samples/snippets | ||
``` | ||
|
||
1. [Obtain GCP user access credentials] via a web flow for your application. | ||
```shell | ||
gcloud auth application-default login | ||
``` | ||
|
||
1. With [Maven] installed, run a sample that has the to-do section completed: | ||
```shell | ||
mvn clean compile exec:java -Dexec.mainClass=pubsub.CreateTopicExample | ||
``` | ||
|
||
1. To run the samples test: | ||
```shell | ||
mvn -Dtest=pubsub.AdminIT test | ||
``` | ||
|
||
[Maven]: https://maven.apache.org/ | ||
[Obtain GCP user access credentials]: https://cloud.google.com/sdk/gcloud/reference/auth/application-default/login |