This repository has been archived by the owner on Jan 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 264
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gddo: update gae-service-proxy for go111 GAE runtime
+ The go111 runtime requires google.golang.org/appengine to be updated to v1.6.5 in order for legacy APIs to continue to work + Small changes need to be made to the main package so that there is a proper main function Steps run to update vendored dependencies: go get -d google.golang.org/[email protected] go mod tidy go mod vendor Change-Id: Ibfec53f00e8ba4874c36478607f68b0e652e09f6 Reviewed-on: https://go-review.googlesource.com/c/gddo/+/216298 Reviewed-by: Bryan C. Mills <[email protected]>
- Loading branch information
Showing
387 changed files
with
137,572 additions
and
26,686 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# This file specifies files that are *not* uploaded to Google Cloud Platform | ||
# using gcloud. It follows the same syntax as .gitignore, with the addition of | ||
# "#!include" directives (which insert the entries of the given .gitignore-style | ||
# file at that point). | ||
# | ||
# For more information, run: | ||
# $ gcloud topic gcloudignore | ||
# | ||
.gcloudignore | ||
# If you would like to upload your .git directory, .gitignore file or files | ||
# from your .gitignore file, remove the corresponding line | ||
# below: | ||
.git | ||
.gitignore | ||
|
||
# Binaries for programs and plugins | ||
*.exe | ||
*.exe~ | ||
*.dll | ||
*.so | ||
*.dylib | ||
# Test binary, build with `go test -c` | ||
*.test | ||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
runtime: go | ||
api_version: go1 | ||
runtime: go111 | ||
service: serviceproxy | ||
|
||
handlers: | ||
- url: /.* | ||
script: _go_app | ||
- url: /_ah/remote_api | ||
script: _go_app | ||
|
||
- url: /.* | ||
script: auto | ||
- url: /_ah/remote_api | ||
script: auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
// Copyright 2020 The Go Authors. All rights reserved. | ||
// | ||
// Use of this source code is governed by a BSD-style | ||
// license that can be found in the LICENSE file or at | ||
// https://developers.google.com/open-source/licenses/bsd. | ||
|
||
// Command gae-service-proxy serves as a proxy for requests to App Engine’s | ||
// remote API endpoints. | ||
package main | ||
|
||
import _ "google.golang.org/appengine/remote_api" | ||
import ( | ||
"google.golang.org/appengine" | ||
_ "google.golang.org/appengine/remote_api" | ||
) | ||
|
||
func main() { | ||
appengine.Main() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.