Skip to content

Commit ce333fb

Browse files
author
Jon Wayne Parrott
committed
Removing references to GCLOUD_PROJECT
Change-Id: I4ac165c826a0cf93d28d8f9cd95ebeb9e1a70272
1 parent 774028d commit ce333fb

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed

appengine/flexible/datastore/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ When running locally, you can use the [Google Cloud SDK](https://cloud.google.co
1414

1515
$ gcloud init
1616

17-
Set the ``GCLOUD_PROJECT`` environment variable to your Project ID before starting your application:
17+
Starting your application:
1818

19-
$ export GCLOUD_PROJECT=[your-project-id]
2019
$ python main.py

appengine/flexible/datastore/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def is_ipv6(addr):
3636
# [START example]
3737
@app.route('/')
3838
def index():
39-
ds = datastore.Client(os.environ['GCLOUD_PROJECT'])
39+
ds = datastore.Client()
4040

4141
user_ip = request.remote_addr
4242

appengine/flexible/pubsub/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ Install dependencies, preferably with a virtualenv:
3535

3636
Then set environment variables before starting your application:
3737

38-
$ export GCLOUD_PROJECT=[your-project-id]
3938
$ export PUBSUB_VERIFICATION_TOKEN=[your-verification-token]
4039
$ export PUBSUB_TOPIC=[your-topic]
4140
$ python main.py

appengine/flexible/storage/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,5 @@ When running locally, you can use the [Google Cloud SDK](https://cloud.google.co
2828

2929
Then set environment variables before starting your application:
3030

31-
$ export GCLOUD_PROJECT=[your-project-id]
3231
$ export CLOUD_STORAGE_BUCKET=[your-bucket-name]
3332
$ python main.py

0 commit comments

Comments
 (0)