generated from codespaces-examples/go
-
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.
- Loading branch information
0 parents
commit 15113e0
Showing
6 changed files
with
140 additions
and
0 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,7 @@ | ||
FROM ubuntu:18.04 | ||
|
||
COPY . . | ||
|
||
ENV PATH "$PATH:/usr/local/go/bin:/home/user/go/bin:/home/user/.cargo/bin" | ||
RUN bash setup.sh | ||
USER user |
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,20 @@ | ||
{ | ||
"name": "Codespaces Go Template Repository", | ||
"extensions": [ | ||
"coenraads.bracket-pair-colorizer-2", | ||
"eamodio.gitlens", | ||
"github.vscode-pull-request-github", | ||
"ms-azuretools.vscode-docker", | ||
"ms-vsliveshare.vsliveshare", | ||
"vscode-icons-team.vscode-icons", | ||
"visualstudioexptteam.vscodeintellicode", | ||
"ms-vscode.go" | ||
], | ||
"dockerFile": "Dockerfile", | ||
"settings": { | ||
"files.exclude": { | ||
"**/CODE_OF_CONDUCT.md": true, | ||
"**/LICENSE": true | ||
} | ||
} | ||
} |
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,40 @@ | ||
# install curl, git, ... | ||
apt-get update | ||
apt-get install -y curl git jq | ||
|
||
useradd -m user | ||
su user | ||
|
||
# install go | ||
VERSION='1.14' | ||
OS='linux' | ||
ARCH='amd64' | ||
|
||
curl -OL https://dl.google.com/go/go${VERSION}.${OS}-${ARCH}.tar.gz | ||
tar -C /usr/local -xzf go$VERSION.$OS-$ARCH.tar.gz | ||
rm go$VERSION.$OS-$ARCH.tar.gz | ||
|
||
INSTALLED_GO_VERSION=$(go version) | ||
echo "Go version ${INSTALLED_GO_VERSION} is installed" | ||
|
||
# install gopls, dlv, hey | ||
echo "Getting development tools" | ||
go get -u golang.org/x/tools/gopls | ||
go get -u github.com/go-delve/delve/cmd/dlv | ||
go get -u github.com/rakyll/hey | ||
|
||
# vscode-go dependencies | ||
echo "Getting dependencies for the vscode-go plugin " | ||
# via: https://github.com/microsoft/vscode-go/blob/master/.travis.yml | ||
go get -u -v github.com/acroca/go-symbols | ||
go get -u -v github.com/cweill/gotests/... | ||
go get -u -v github.com/davidrjenni/reftools/cmd/fillstruct | ||
go get -u -v github.com/haya14busa/goplay/cmd/goplay | ||
go get -u -v github.com/mdempsky/gocode | ||
go get -u -v github.com/ramya-rao-a/go-outline | ||
go get -u -v github.com/rogpeppe/godef | ||
go get -u -v github.com/sqs/goreturns | ||
go get -u -v github.com/uudashr/gopkgs/cmd/gopkgs | ||
go get -u -v github.com/zmb3/gogetdoc | ||
go get -u -v golang.org/x/lint/golint | ||
go get -u -v golang.org/x/tools/cmd/gorename |
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 @@ | ||
# Binaries for programs and plugins | ||
*.exe | ||
*.exe~ | ||
*.dll | ||
*.so | ||
*.dylib | ||
|
||
# Test binary, built with `go test -c` | ||
*.test | ||
|
||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out | ||
|
||
# Dependency directories (remove the comment below to include it) | ||
# vendor/ |
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,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2020 codespaces-examples | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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,37 @@ | ||
# Go (Golang) Codespaces starter template | ||
|
||
Welcome, Gopher! This repository is a template for you to use in your next (or existing) Go project so you can take advantage of [Visual Studio Codespaces](https://visualstudio.microsoft.com/services/visual-studio-codespaces/), or the brand-new [GitHub Codespaces](https://github.com/features/codespaces). | ||
|
||
## How to get started on a new repository | ||
|
||
The easiest way to get started is on a new repository. For that, simply click on the green "Use this template" button, right above the list of files. | ||
|
||
After you do, a list of options for creating a _new_ repository will pop up. After you're done, a brand new repository will be created for you, wherever you told it to. And it'll be pre-populated with everything you need to be up and running with Codespaces. | ||
|
||
## How to get started with an existing repository | ||
|
||
TODO | ||
|
||
## Testing this out | ||
|
||
This template sets up Go entirely inside a Docker image. To test it, make sure you have [Docker](https://docker.com) installed and run the below command from the root of this repository: | ||
|
||
```console | ||
$ cd .devcontainer | ||
$ docker build . | ||
$ cd .. | ||
``` | ||
|
||
>When you run the command, make sure to remove the leading `$` | ||
## Built on the Shoulders of Giants | ||
|
||
Like almost every developer who contributes to open source, I didn't write this code in a vacuum. I had help! Thank you to the following contributors for helping me build this: | ||
|
||
- [`bnb`](https://github.com/bnb) for code from [codespaces-examples/node](https://github.com/codespaces-examples/node | ||
) | ||
- [`asw101`](https://github.com/asw101) for code from [`asw101/hello-vso`](https://github.com/asw101/hello-vso) | ||
|
||
I took inspiration, and sometimes code, from their repositories. | ||
|
||
>I took code and ideas _directly_ from these developers' repositories. There are countless other projects and technologies that this repository implicitly relies on, and the list of contributors behind those projects is too long to write here. Thank you to every one of those contributors. |