-
Notifications
You must be signed in to change notification settings - Fork 0
/
最初にやること.txt
47 lines (38 loc) · 1.3 KB
/
最初にやること.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
1. Next.js導入
cd
npx create-next-app
2. githubでprodubt作成
3. go導入
cd
//メインのディレクトリ(ルートディレクトリ)
go install github.com/99designs/gqlgen@latest
//go の最新バージョンをインストール
go mod init :github.com/sharin-sushi/***
githubのproductのページ
//go.modを構築 ※やり直す場合はgo.modを消してから
(go get -u github.com/gin-gonic/gin //最新のginを入れる)
go mod tidy
go env
//環境変数表示 GOROOT, GOPATHの確認
go mod init "github.com:sharin-sushi/0013Go_Next_2.git"
4. git init
cd rootディレクトリ
git init
git add .
git commit -m "first commit"
git branch -M main
git remote add origin "https://github.com/sharin-sushi/0012GoNext.git"
//HTTPにすること。間違えたら git remote remove origin でやり直し
git push -u origin main
5. **,goへimport
go get "github.com/sharin-sushi/0010/test/internal/article"
記述
import(
"getしたurl"
)
6. 何かしら変更したら
git branch ~~ (branch作成)
git checkout ~~(~~を使用)
git add . ←そのディレクトリ以下全部の .
git commit -m "コメント"
git push origin -u ~~