Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: golang/tour
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: golang-ko/tour
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
Loading
71 changes: 71 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
{
"files": [
"README.md"
],
"imageSize": 100,
"commit": false,
"contributors": [
{
"login": "umi0410",
"name": "Jinsu Park",
"avatar_url": "https://avatars.githubusercontent.com/u/33250725?v=4",
"profile": "https://umi0410.github.io",
"contributions": [
"infra",
"review",
"translation"
]
},
{
"login": "seovalue",
"name": "joanne",
"avatar_url": "https://avatars.githubusercontent.com/u/48412963?v=4",
"profile": "https://joanne.tistory.com/",
"contributions": [
"translation"
]
},
{
"login": "FacerAin",
"name": "Yong woo Song",
"avatar_url": "https://avatars.githubusercontent.com/u/16442978?v=4",
"profile": "https://facerain.github.io/",
"contributions": [
"translation"
]
},
{
"login": "dextto",
"name": "Yongjae Han",
"avatar_url": "https://avatars.githubusercontent.com/u/6759796?v=4",
"profile": "https://github.com/dextto",
"contributions": [
"translation"
]
},
{
"login": "zoripong",
"name": "Yuri Han",
"avatar_url": "https://avatars.githubusercontent.com/u/26541456?v=4",
"profile": "https://github.com/zoripong",
"contributions": [
"translation"
]
},
{
"login": "begaonnuri",
"name": "남윤서",
"avatar_url": "https://avatars.githubusercontent.com/u/39271364?v=4",
"profile": "https://github.com/begaonnuri",
"contributions": [
"translation"
]
}
],
"contributorsPerLine": 7,
"projectName": "tour",
"projectOwner": "golang-ko",
"repoType": "github",
"repoHost": "https://github.com",
"skipCi": true
}
1 change: 1 addition & 0 deletions .gcloudignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.gcloudignore
.git
.idea
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.idea
**/.idea
111 changes: 66 additions & 45 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,63 +1,84 @@
# Go Tour
# Go Tour (Go를 향한 여행)
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
[![All Contributors](https://img.shields.io/badge/all_contributors-6-orange.svg?style=flat-square)](#contributors-)
<!-- ALL-CONTRIBUTORS-BADGE:END -->

A Tour of Go is an introduction to the Go programming language. Visit
https://tour.golang.org to start the tour.
이 repository는 https://tour.golang.org 의 한국어 번역을 위한 repository 입니다.

## Download/Install

To install the tour from source, first
[install Go](https://golang.org/doc/install) and then run:

$ go get golang.org/x/tour
## 배포하는 방법

This will place a `tour` binary in your
[workspace](https://golang.org/doc/code.html#Workspaces)'s `bin` directory.
The tour program can be run offline.
> 현재는 배포가 GCP의 `go-lang-ko` 프로젝트의 권한이 있는 사람에 의해 수동으로 진행되고 있습니다.
> 누군가 Github Action을 통해 자동화를 진행해주시기를 기다리고있습니다.
## Contributing
<!-- `app.yaml`속의 `service`를 수정해주십시오. -->

Contributions should follow the same procedure as for the Go project:
https://golang.org/doc/contribute.html

To run the tour server locally:

```sh
go run .
```bash
$ sudo GO111MODULE=on gcloud --project=go-tour-ko app deploy app.yaml
$ gcloud app browse
```

Your browser should now open. If not, please visit [http://localhost:3999/](http://localhost:3999).


## Report Issues / Send Patches

This repository uses Gerrit for code changes. To learn how to submit changes to
this repository, see https://golang.org/doc/contribute.html.

The issue tracker for the tour's code is located at https://github.com/golang/go/issues.
Prefix your issue with "x/tour:" in the subject line, so it is easy to find.
## Contribute하기

Issues with the tour's content itself should be reported in the issue tracker
at https://github.com/golang/tour/issues.
golang-ko의 tour는 누구든 자유롭게 기여하실 수 있고, 이를 매우 환영합니다!

## Deploying
간단한 오타 수정이나 추가 번역의 경우 바로 PR을 남겨주셔도 되고, 간단히 Issue를 남겨주시면
누군가 빠른 시일 내에 참고하여 처리할 것입니다.

1. To deploy tour.golang.org, run:
이슈를 남기고, 본인이 직접 해결해보고자하시는 분은 이슈에 해당 내용을 언급해주시면 감사하겠습니다.

```
GO111MODULE=on gcloud --project=golang-org app deploy --no-promote app.yaml
```
많은 Contribute를 기대합니다! 감사합니다!

This will create a new version, which can be viewed within the
[golang-org GCP project](https://console.cloud.google.com/appengine/versions?project=golang-org&serviceId=tour).
### Contribute 전에 로컬에서 확인해보는 방법

2. Check that the deployed version looks OK (click the version link in GCP).

3. If all is well, click "Migrate Traffic" to move 100% of the tour.golang.org
traffic to the new version.

4. You're done.

## License
```bash
# git clone 후 project root에서 실행
$ go run .
2020/09/02 16:59:17 Serving content from <YOUR_LOCATION>/tour
2020/09/02 16:59:17 A browser window should open. If not, please visit http://127.0.0.1:3999
```

Unless otherwise noted, the go-tour source files are distributed
under the BSD-style license found in the LICENSE file.
### 번역파일 작성 시 주의사항

* 띄어쓰기를 주의해주세요.
*\`hello\` World => `hello` World
*\`hello\`World => \`hello\`World

*\*하나\*\*주의:\* => **하나 더 주의:**
*\*하나 더 주의:\* => \*하나 더 주의:\*

* `#appengine`은 appengin으로 실행한 경우에만 보여지고, 그렇지 않은 경우는 생략된 채 다음 줄의 문장으로 치환됩니다.
* ```
#appengine: foo
bar
```
* appengine으로 서브: foo
* 그 외의 경우로 서브: bar
---
## Contributors ✨
go tour 번역에 기여해주신 분들입니다. ([emoji key 참고](https://allcontributors.org/docs/en/emoji-key)):
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<!-- markdownlint-disable -->
<table>
<tr>
<td align="center"><a href="https://umi0410.github.io"><img src="https://avatars.githubusercontent.com/u/33250725?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Jinsu Park</b></sub></a><br /><a href="#infra-umi0410" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="https://github.com/golang-ko/tour/pulls?q=is%3Apr+reviewed-by%3Aumi0410" title="Reviewed Pull Requests">👀</a><a href="#translation-seovalue" title="Translation">🌍</a></td>
<td align="center"><a href="https://joanne.tistory.com/"><img src="https://avatars.githubusercontent.com/u/48412963?v=4?s=100" width="100px;" alt=""/><br /><sub><b>joanne</b></sub></a><br /><a href="#translation-seovalue" title="Translation">🌍</a></td>
<td align="center"><a href="https://facerain.github.io/"><img src="https://avatars.githubusercontent.com/u/16442978?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Yong woo Song</b></sub></a><br /><a href="#translation-FacerAin" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/dextto"><img src="https://avatars.githubusercontent.com/u/6759796?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Yongjae Han</b></sub></a><br /><a href="#translation-dextto" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/zoripong"><img src="https://avatars.githubusercontent.com/u/26541456?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Yuri Han</b></sub></a><br /><a href="#translation-zoripong" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/begaonnuri"><img src="https://avatars.githubusercontent.com/u/39271364?v=4?s=100" width="100px;" alt=""/><br /><sub><b>남윤서</b></sub></a><br /><a href="#translation-begaonnuri" title="Translation">🌍</a></td>
</tr>
</table>
<!-- markdownlint-restore -->
<!-- prettier-ignore-end -->
<!-- ALL-CONTRIBUTORS-LIST:END -->
23 changes: 14 additions & 9 deletions app.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
service: tour
runtime: go112
#service: tour
service: default
runtime: go115

env_variables:
GOLANGORG_CHECK_COUNTRY: true
TOUR_ANALYTICS: |
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-11222381-5"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-88GMS6XSSV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag("js", new Date());
gtag("config", "UA-11222381-5");
gtag("config", "UA-49880327-6");
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-88GMS6XSSV');
</script>
default_expiration: "7d"
default_expiration: "10s"

# Keep these static file handlers in sync with local.go.
# They're here for improved latency across global regions.
@@ -28,3 +30,6 @@ handlers:
- url: /static
static_dir: static
secure: always
- url: /.*
secure: always
script: auto
8 changes: 8 additions & 0 deletions content/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions content/.idea/content.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions content/.idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions content/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions content/.idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions content/.idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading