Skip to content
This repository was archived by the owner on Oct 1, 2025. It is now read-only.

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

Lines changed: 0 additions & 1 deletion
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

Lines changed: 0 additions & 1 deletion
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

Lines changed: 0 additions & 1 deletion
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

Lines changed: 0 additions & 1 deletion
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

Lines changed: 0 additions & 1 deletion
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

Lines changed: 0 additions & 1 deletion
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

Lines changed: 0 additions & 1 deletion
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

Lines changed: 3 additions & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 3 additions & 1 deletion
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

0 commit comments

Comments
 (0)