質問編集履歴

3

デプロイツール追記

2017/12/06 23:48

投稿

nakabonne
nakabonne

スコア52

test CHANGED
File without changes
test CHANGED
@@ -89,3 +89,11 @@
89
89
  github.com/jinzhu/gorm/dialects/mysql
90
90
 
91
91
  github.com/julienschmidt/httprouter
92
+
93
+
94
+
95
+ ## デプロイツール
96
+
97
+
98
+
99
+ - gcloud app deploy

2

インポートしている外部packageを更新

2017/12/06 23:48

投稿

nakabonne
nakabonne

スコア52

test CHANGED
File without changes
test CHANGED
@@ -76,53 +76,9 @@
76
76
 
77
77
  ```
78
78
 
79
- ## インポートしているpackage
79
+ ## インポートしている外部package
80
80
 
81
- golang.org/x/sys/unix
82
81
 
83
- github.com/fsnotify/fsnotify
84
-
85
- github.com/hashicorp/hcl/hcl/strconv
86
-
87
- github.com/hashicorp/hcl/hcl/token
88
-
89
- github.com/hashicorp/hcl/hcl/ast
90
-
91
- github.com/hashicorp/hcl/hcl/scanner
92
-
93
- github.com/hashicorp/hcl/hcl/parser
94
-
95
- github.com/hashicorp/hcl/json/token
96
-
97
- github.com/hashicorp/hcl/json/scanner
98
-
99
- github.com/hashicorp/hcl/json/parser
100
-
101
- github.com/hashicorp/hcl
102
-
103
- github.com/magiconair/properties
104
-
105
- github.com/mitchellh/mapstructure
106
-
107
- github.com/pelletier/go-toml
108
-
109
- github.com/spf13/afero/mem
110
-
111
- golang.org/x/text/transform
112
-
113
- golang.org/x/text/unicode/norm
114
-
115
- github.com/spf13/afero
116
-
117
- github.com/spf13/cast
118
-
119
- github.com/spf13/jwalterweatherman
120
-
121
- github.com/spf13/pflag
122
-
123
- gopkg.in/yaml.v2
124
-
125
- github.com/spf13/viper
126
82
 
127
83
  github.com/jinzhu/inflection
128
84
 
@@ -132,46 +88,4 @@
132
88
 
133
89
  github.com/jinzhu/gorm/dialects/mysql
134
90
 
135
- github.com/stretchr/objx
136
-
137
- github.com/stretchr/codecs
138
-
139
- github.com/stretchr/stew/strings
140
-
141
- github.com/stretchr/tracer
142
-
143
- github.com/stretchr/signature
144
-
145
- github.com/stretchr/gomniauth/common
146
-
147
- github.com/stretchr/gomniauth
148
-
149
91
  github.com/julienschmidt/httprouter
150
-
151
- github.com/stretchr/codecs/constants
152
-
153
- gopkg.in/mgo.v2/internal/json
154
-
155
- gopkg.in/mgo.v2/bson
156
-
157
- github.com/stretchr/codecs/bson
158
-
159
- github.com/stretchr/codecs/csv
160
-
161
- github.com/stretchr/codecs/json
162
-
163
- github.com/stretchr/codecs/jsonp
164
-
165
- github.com/ugorji/go/codec
166
-
167
- github.com/stretchr/codecs/msgpack
168
-
169
- github.com/clbanning/x2j
170
-
171
- github.com/stretchr/codecs/xml
172
-
173
- github.com/stretchr/codecs/services
174
-
175
- github.com/stretchr/gomniauth/oauth2
176
-
177
- github.com/stretchr/gomniauth/providers/facebook

1

app.yamlの追記

2017/12/06 06:56

投稿

nakabonne
nakabonne

スコア52

test CHANGED
File without changes
test CHANGED
@@ -27,6 +27,42 @@
27
27
 
28
28
 
29
29
  ![![イメージ説明](78093471e4d9266bf4bf2a9329752ed6.png)
30
+
31
+
32
+
33
+ ## app.yaml
34
+
35
+
36
+
37
+ ```
38
+
39
+ runtime: go
40
+
41
+ env: flex
42
+
43
+ api_version: go1.8
44
+
45
+ manual_scaling:
46
+
47
+ instances: 1
48
+
49
+ resources:
50
+
51
+ cpu: 2
52
+
53
+ memory_gb: 2.3
54
+
55
+ disk_size_gb: 20
56
+
57
+ readiness_check:
58
+
59
+ app_start_timeout_sec: 3600
60
+
61
+ beta_settings:
62
+
63
+ cloud_sql_instances: "インスタンス接続名"
64
+
65
+ ```
30
66
 
31
67
 
32
68