Skip to content

Commit 7f1fa4e

Browse files
author
Frank Natividad
committed
Updated README.md to reflect generated path and removed discovery
1 parent 64387e6 commit 7f1fa4e

File tree

1 file changed

+12
-10
lines changed
  • appengine/endpoints-frameworks-v2/migration-example

1 file changed

+12
-10
lines changed

appengine/endpoints-frameworks-v2/migration-example/README.md

+12-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Hello World Google Cloud Endpoints for App Engine with a discovery document
1+
# Hello World Google Cloud Endpoints for App Engine
22

33
This sample provides an example of a [migration][7] from the prior version of
44
[Google Cloud Endpoints Frameworks][3] to new [Google Cloud Endpoints Frameworks for App Engine][8].
@@ -7,7 +7,7 @@ For clarity, the prior Endpoints Frameworks and the new Endpoints Frameworks are
77
denoted as Endpoints Frameworks v1.0 and Endpoints Frameworks v2.0 respectively.
88

99
Google Cloud Endpoints Frameworks v2.0 provides new functionality which may
10-
require payment and uses an OpenAPI specification instead of the discovery document.
10+
require payment and uses an OpenAPI specification.
1111
The OpenAPI development process is explained [here][8] and a quickstart is
1212
provided [here][9].
1313

@@ -61,37 +61,39 @@ provided [here][9].
6161
6262
### Maven
6363
64-
1. Build a fresh binary with
64+
1. Build a fresh binary by using:
6565
6666
`mvn clean compile`
6767
68-
1. Run the application locally at [localhost:8080][5] with
68+
1. Run the application locally at [localhost:8080][5] by using:
6969
7070
`mvn appengine:run`
7171
72-
1. Generate the client library in a zip file named `helloworld-v1-java.zip` with
72+
1. Generate the client library located at `target/client-libs/helloworld-v1-java.zip`
73+
by using:
7374
7475
`mvn endpoints-framework:clientLibs`
7576
76-
1. Deploy your application to Google App Engine with
77+
1. Deploy your application to Google App Engine by using:
7778
7879
`mvn appengine:deploy`
7980
8081
### Gradle
8182
82-
1. Build a fresh binary with
83+
1. Build a fresh binary by using:
8384
8485
`gradle clean compileJava`
8586
86-
1. Run the application locally at [localhost:8080][5] with
87+
1. Run the application locally at [localhost:8080][5] by using:
8788
8889
`gradle appengineRun`
8990
90-
1. Generate the client library in a zip file named `helloworld-v1-java.zip` with
91+
1. Generate the client library located at `build/endpointsClientLibs/helloworld-v1-java.zip`
92+
by using:
9193
9294
`gradle endpointsClientLibs`
9395
94-
1. Deploy your application to Google App Engine with
96+
1. Deploy your application to Google App Engine by using:
9597
9698
`gradle appengineDeploy`
9799

0 commit comments

Comments
 (0)