https://github.com/timeless-residents/handson-go
Hands-on practice project for learning Go programming language
https://github.com/timeless-residents/handson-go
go golang hands-on learning practice
Last synced: 6 months ago
JSON representation
Hands-on practice project for learning Go programming language
- Host: GitHub
- URL: https://github.com/timeless-residents/handson-go
- Owner: timeless-residents
- Created: 2025-02-14T11:23:26.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-02-14T11:28:00.000Z (8 months ago)
- Last Synced: 2025-02-14T12:31:31.821Z (8 months ago)
- Topics: go, golang, hands-on, learning, practice
- Language: Go
- Homepage: https://handson-go.onrender.com/
- Size: 3.99 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# handson-go
このリポジトリは、Goプログラミング言語を使用した実践的なプロジェクトです。
## プロジェクト構成
- `main.go` - メインアプリケーションコード
- `main_test.go` - テストファイル
- `go.mod` - Goモジュール定義ファイル
- `render.yaml` - デプロイメント設定ファイル## 始め方
1. リポジトリをクローンします:
```bash
git clone https://github.com/timeless-residents/handson-go.git
cd handson-go
```2. 依存関係をインストールします:
```bash
go mod download
```3. テストを実行します:
```bash
go test
```4. アプリケーションを実行します:
```bash
go run main.go
```## ライセンス
このプロジェクトはMITライセンスの下で公開されています。詳細については、[LICENSE](LICENSE)ファイルを参照してください。