Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryosukedtomita/template_repository_go
template repository for go
https://github.com/ryosukedtomita/template_repository_go
devcontainer go template-repository
Last synced: about 2 months ago
JSON representation
template repository for go
- Host: GitHub
- URL: https://github.com/ryosukedtomita/template_repository_go
- Owner: RyosukeDTomita
- License: unlicense
- Created: 2024-11-12T00:30:07.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-12T03:20:33.000Z (about 2 months ago)
- Last Synced: 2024-11-12T04:22:56.894Z (about 2 months ago)
- Topics: devcontainer, go, template-repository
- Language: Shell
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Go Template Repository
![un license](https://img.shields.io/github/license/RyosukeDTomita/template_repository_go)
## INDEX
- [ABOUT](#about)
- [ENVIRONMENT](#environment)
- [PREPARING](#preparing)
- [TOOLS](#tools)---
## ABOUT
---
## ENVIRONMENT
[Dockerfile](./Dockerfile)
---
## PREPARING
- VSCode
- Dev Container
- Docker---
## TOOLS
### go run
go runコマンドを使うとインタプリタのように使える。
```shell
go run hello.go
```---
### go build
go buildで実行ファイルにする。
```shell
go build -o hello hello.go
```---
### go mod
go modはモジュールを操作する。
```shell
# モジュールを初期化
mkdir hello
cd hello
go mod init hello# ソースファイルを解析して必用なサードパーティーのライブラリのダウンロードや不要になったファイルの削除などを行う。
go mod tidy
```---
### go install
---