Skip to content

Commit 7bd35d9

Browse files
committed
update .gcloudignore files & Blobstore/GCS READMEs
1 parent 22efc23 commit 7bd35d9

File tree

26 files changed

+11
-27
lines changed

26 files changed

+11
-27
lines changed

mod0-baseline/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

mod1-flask/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

mod11-functions/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

mod12-memcache/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

mod12b-memcache/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

mod13a-memorystore/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

mod13b-memorystore/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

mod15-blobstore/.gcloudignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
#
99
.gcloudignore
1010

11+
# Special files in this dir
12+
main-gcs.py
13+
1114
# Source code control files
1215
.git/
1316
.gitignore
@@ -20,7 +23,6 @@ LICENSE
2023

2124
# Tests/results (not in .gitignore)
2225
noxfile.py
23-
test_translate.py
2426
pylintrc
2527
pylintrc.test
2628

mod15-blobstore/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Module 15 - Add usage of App Engine `blobstore` to `webapp2 ndb` sample app
22

3-
This repo folder is the corresponding code to the (forthcoming) Module 15 codelab. The tutorial STARTs with the Python 2 code in the [Module 0 repo folder](/mod0-baseline) and leads developers through adding use of App Engine `blobstore`. Unlike other sample apps, this does not use the default Django templating system, but instead, uses Jinja2, which is supported in `webapp2_extras`.
3+
This repo folder is the corresponding code to the [Module 15 codelab](https://codelabs.developers.google.com/codelabs/cloud-gae-python-migrate-15-blobstore?utm_source=codelabs&utm_medium=et&utm_campaign=CDR_wes_aap-serverless_mgrblobstore_sms_202029&utm_content=-). The tutorial STARTs with the Python 2 code in the [Module 0 repo folder](/mod0-baseline) and leads developers through adding use of App Engine `blobstore`, resulting in the code in _this_ folder. Unlike other sample apps, this does not use the default Django templating system, but instead, uses Jinja2, which is supported in `webapp2_extras`.
44

55
Blobstore evolved into [Google Cloud Storage](https://cloud.google.com/storage), and all blobs/files created using the Blobstore API go into the default Cloud Storage bucket for your project. It's named the same as the `appspot` domain name given to your app. For example, if your project is named `my-project`, your default bucket would be `my-project.appspot.com`. The default GCS bucket name is programmatically accessible via `google.appengine.api.app_identity.get_default_gcs_bucket_name()`.
66

mod16-cloudstorage/.gcloudignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
#
99
.gcloudignore
1010

11+
# Special files in this dir
12+
main-migrate.py
13+
1114
# Source code control files
1215
.git/
1316
.gitignore
@@ -20,7 +23,6 @@ LICENSE
2023

2124
# Tests/results (not in .gitignore)
2225
noxfile.py
23-
test_translate.py
2426
pylintrc
2527
pylintrc.test
2628

mod16-cloudstorage/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Migrations
44

5-
This repo folder is the corresponding code to the [Module 16 codelab](http://g.co/codelabs/pae-migrate-blobstore). The tutorial STARTs with the Python 2 code in the [Module 15 repo folder](/mod15-blobstore) and leads developers through a set of migrations, culminating in the code in this folder. In addition to migrating to Cloud Storage, a few others are done to get from Modules 15 to 16... here is the complete list:
5+
This repo folder is the corresponding code to the [Module 16 codelab](https://codelabs.developers.google.com/codelabs/cloud-gae-python-migrate-16-cloudstorage?utm_source=codelabs&utm_medium=et&utm_campaign=CDR_wes_aap-serverless_mgrcloudstorage_sms_202029&utm_content=-). The tutorial STARTs with the Python 2 code in the [Module 15 repo folder](/mod15-blobstore) and leads developers through a set of migrations, culminating in the code in _this_ folder. In addition to migrating to Cloud Storage, a few others are done to get from Modules 15 to 16... here is the complete list:
66

77
1. Migrate from App Engine `webapp2` to Flask
88
1. Migrate from App Engine `ndb` to Cloud NDB

mod18-gaepull/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

mod19-pubsub/.gcloudignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
#
99
.gcloudignore
1010

11+
# Special files in this dir
12+
maker.py
13+
1114
# Source code control files
1215
.git/
1316
.gitignore
@@ -20,8 +23,6 @@ LICENSE
2023

2124
# Tests/results (not in .gitignore)
2225
noxfile.py
23-
test_translate.py
24-
maker.py
2526
pylintrc
2627
pylintrc.test
2728

mod1b-flask/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

mod2a-cloudndb/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

mod2b-cloudndb/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

mod3a-datastore/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

mod3b-datastore/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

mod4a-rundocker/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

mod4b-rundocker/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

mod5-runbldpks/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

mod6-firestore/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

mod7-gaetasks/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

mod7b-gaetasks/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

mod8-cloudtasks/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

mod9-py3dstasks/.gcloudignore

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ LICENSE
2020

2121
# Tests/results (not in .gitignore)
2222
noxfile.py
23-
test_translate.py
2423
pylintrc
2524
pylintrc.test
2625

0 commit comments

Comments
 (0)