-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[x/tour] tour: make the tour deployable on App Engine again
Move the main Go files into the same directory as the app.yaml file. This changes the command location to be at golang.org/x/tour instead of golang.org/x/tour/gotour. Add a placeholder command in gotour so that those who use the previous installation command will know to use the new one and it won't just seem like it has vanished. Also update the documentation to take into account that the tour is no longer distributed with releases as of golang.org/cl/131156 Fixes golang/go#28163 Change-Id: I60737f0cfaa93d12902a75fbc0924d96672a8c9b Reviewed-on: https://go-review.googlesource.com/c/141857 Run-TryBot: Andrew Bonventre <andybons@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> X-Tour-Commit: 5807c4fa28aba30e78d2ef679bb99cd9fe45c9b9
- Loading branch information
1 parent
15b1029
commit 227243e
Showing
8 changed files
with
41 additions
and
39 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
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
File renamed without changes.
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
File renamed without changes.
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,15 @@ | ||
// Copyright 2018 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. | ||
|
||
package main | ||
|
||
import ( | ||
"io" | ||
"os" | ||
) | ||
|
||
func main() { | ||
io.WriteString(os.Stderr, "golang.org/x/tour/gotour has moved to golang.org/x/tour\n") | ||
os.Exit(1) | ||
} |
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