Skip to content

Commit 6f17fc4

Browse files
author
Frank Natividad
committed
s/GOOGLE_CLOUD_PROJECT/YOUR-PROJECT-ID/
1 parent 8c958ca commit 6f17fc4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ process is explained [here][8] and a quickstart is provided [here][9].
3535
- [Google Cloud Endpoints Frameworks Gradle Plugin][11]
3636

3737
## Setup
38-
1. Change `GOOGLE_CLOUD_PROJECT` with your project id in the hostname parameter
38+
1. Change `YOUR-PROJECT-ID` with your project id in the hostname parameter
3939
defined in either the Maven or Gradle build script. Hostname is used when a
4040
discovery document is generated.
4141

appengine/endpoints-frameworks-v2/migration-example/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ appengine { // App Engine tasks configuration
7474
// [START endpoints-server]
7575
endpointsServer {
7676
// Endpoints Framework Plugin server-side configuration
77-
hostname = "GOOGLE_CLOUD_PROJECT.appspot.com"
77+
hostname = "YOUR-PROJECT-ID.appspot.com"
7878
}
7979
// [END endpoints-server]
8080

appengine/endpoints-frameworks-v2/migration-example/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ limitations under the License.
9898
<version>1.0.0</version>
9999
<configuration>
100100
<!-- plugin configuration -->
101-
<hostname>GOOGLE_CLOUD_PROJECT.appspot.com</hostname>
101+
<hostname>YOUR-PROJECT-ID.appspot.com</hostname>
102102
</configuration>
103103
</plugin>
104104
<!-- [END endpoints-frameworks-plugin] -->

0 commit comments

Comments
 (0)