Merge pull request #1096 from shuuji3/fix-github-spelling
Replace the spelling of `github` and `Github` with `GitHub`
This commit is contained in:
@@ -91,7 +91,7 @@ Para compilar nossa aplicação, deveremos alterar o código fonte de diretório
|
||||
|
||||
## Instalando pacotes remotamente
|
||||
|
||||
Go possui uma ferramenta para utilizar pacotes remotos, chamada `go get`. Ela é suportada por grandes comunidades de código aberto, incluindo: Github, Google Code, Bitbucket e Launchpad.
|
||||
Go possui uma ferramenta para utilizar pacotes remotos, chamada `go get`. Ela é suportada por grandes comunidades de código aberto, incluindo: GitHub, Google Code, Bitbucket e Launchpad.
|
||||
|
||||
go get github.com/astaxie/beedb
|
||||
|
||||
|
||||
@@ -56,10 +56,10 @@ Normalmente, usamos o comando `gofmt -w` ao invés de simplesmente `go fmt`. A d
|
||||
|
||||
## go get
|
||||
|
||||
Esse comando serve para obtenção de pacotes remotamente. Até o momento, o comando suporta BitBucket, Github, Google Code e Launchpad. De fato, duas coisas ocorrem quando esse comando é executado. Primeiramente é feito o download do código fonte e então é executado o comando `go install`. Antes de utilizar esse comando, tenha certeza de possuir instalados as seguintes ferramentas.
|
||||
Esse comando serve para obtenção de pacotes remotamente. Até o momento, o comando suporta BitBucket, GitHub, Google Code e Launchpad. De fato, duas coisas ocorrem quando esse comando é executado. Primeiramente é feito o download do código fonte e então é executado o comando `go install`. Antes de utilizar esse comando, tenha certeza de possuir instalados as seguintes ferramentas.
|
||||
|
||||
BitBucket (Mercurial Git)
|
||||
Github (git)
|
||||
GitHub (git)
|
||||
Google Code (Git, Mercurial, Subversion)
|
||||
Launchpad (Bazaar)
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ When our web application is finally production ready, what are the steps necessa
|
||||
|
||||
## Daemons
|
||||
|
||||
Currently, Go programs cannot cannot be run as daemon processes (for additional information, see the open issue on github [here](https://github.com/golang/go/issues/227)). It's difficult to fork existing threads in Go because there is no way of ensuring a consistent state in all threads that have been used.
|
||||
Currently, Go programs cannot cannot be run as daemon processes (for additional information, see the open issue on GitHub [here](https://github.com/golang/go/issues/227)). It's difficult to fork existing threads in Go because there is no way of ensuring a consistent state in all threads that have been used.
|
||||
|
||||
We can, however, see many attempts at implementing daemons online, such as in the two following ways;
|
||||
|
||||
|
||||
@@ -56,7 +56,7 @@ OAuth and OAuth 2 are currently two of the most popular authentication methods.
|
||||
|
||||
github.com/bradrydzewski/go.auth
|
||||
|
||||
The code below demonstrates how to use this library to implement OAuth authentication in Beego using our Github credentials:
|
||||
The code below demonstrates how to use this library to implement OAuth authentication in Beego using our GitHub credentials:
|
||||
|
||||
1. Let's add some routes
|
||||
|
||||
@@ -147,7 +147,7 @@ After clicking "Authorize app", the following screen appears:
|
||||
|
||||

|
||||
|
||||
Figure 14.6 authorized Github information gets displayed after the login page
|
||||
Figure 14.6 authorized GitHub information gets displayed after the login page
|
||||
|
||||
## Custom authentication
|
||||
|
||||
|
||||
Reference in New Issue
Block a user