Skip to content

Commit

Permalink
[webapp][go] put Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
catatsuy committed Sep 5, 2019
1 parent 5173dfc commit bc4ff91
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
1 change: 1 addition & 0 deletions webapp/go/.gitignore
@@ -0,0 +1 @@
isucari
6 changes: 6 additions & 0 deletions webapp/go/Makefile
@@ -0,0 +1,6 @@
export GO111MODULE=on

all: isucari

isucari: *.go
go build -o isucari
10 changes: 5 additions & 5 deletions webapp/go/go.mod
Expand Up @@ -3,9 +3,9 @@ module github.com/isucon/isucon9-qualify/webapp/go
go 1.12

require (
github.com/go-sql-driver/mysql v1.4.1 // indirect
github.com/gorilla/sessions v1.2.0 // indirect
github.com/jmoiron/sqlx v1.2.0 // indirect
goji.io v2.0.2+incompatible // indirect
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4 // indirect
github.com/go-sql-driver/mysql v1.4.1
github.com/gorilla/sessions v1.2.0
github.com/jmoiron/sqlx v1.2.0
goji.io v2.0.2+incompatible
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4
)

0 comments on commit bc4ff91

Please sign in to comment.