質問編集履歴
4
もう少し読みやすくしました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -32,7 +32,7 @@
|
|
32
32
|
|
33
33
|
```
|
34
34
|
|
35
|
-
すると
|
35
|
+
すると
|
36
36
|
|
37
37
|
```error
|
38
38
|
|
3
もう少し読みやすくしました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
```
|
18
18
|
|
19
|
-
で今までデプロイしてきましたが、おそらくプルリクエスト前にgit pull origin masterをしてしまったのが原因かと思いますが、デプロイができなくなりました。
|
19
|
+
で今までデプロイしてきましたが、おそらくプルリクエスト前にgit pull origin masterをしてしまったのが原因かJavaScript関連での原因と思いますが、デプロイができなくなりました。
|
20
20
|
|
21
21
|
|
22
22
|
|
2
もう少し読みやすくしました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,8 @@
|
|
1
|
+
### 前提・実現したいこと
|
2
|
+
|
1
3
|
EC2で
|
2
4
|
|
3
|
-
```
|
5
|
+
```terminal
|
4
6
|
|
5
7
|
$ git pull origin master
|
6
8
|
|
@@ -8,7 +10,7 @@
|
|
8
10
|
|
9
11
|
からの
|
10
12
|
|
11
|
-
```
|
13
|
+
```terminal
|
12
14
|
|
13
15
|
% bundle exec cap production deproy
|
14
16
|
|
@@ -18,7 +20,13 @@
|
|
18
20
|
|
19
21
|
|
20
22
|
|
23
|
+
|
24
|
+
|
25
|
+
### 発生している問題・エラーメッセージ
|
26
|
+
|
27
|
+
|
28
|
+
|
21
|
-
```
|
29
|
+
```termnal
|
22
30
|
|
23
31
|
% bundle exec cap production deproy
|
24
32
|
|
@@ -26,7 +34,7 @@
|
|
26
34
|
|
27
35
|
すると
|
28
36
|
|
29
|
-
```
|
37
|
+
```error
|
30
38
|
|
31
39
|
00:10 deploy:assets:precompile
|
32
40
|
|
@@ -184,44 +192,120 @@
|
|
184
192
|
|
185
193
|
というエラーが表示されました。
|
186
194
|
|
195
|
+
|
196
|
+
|
197
|
+
### 試したこと
|
198
|
+
|
199
|
+
```error
|
200
|
+
|
201
|
+
DEBUG [557c0069] Tasks: TOP => assets:precompile
|
202
|
+
|
203
|
+
```
|
204
|
+
|
205
|
+
とあったので
|
206
|
+
|
207
|
+
|
208
|
+
|
209
|
+
```terminal
|
210
|
+
|
211
|
+
tail log/capistrano.log
|
212
|
+
|
213
|
+
less log/capistrano.log
|
214
|
+
|
215
|
+
```
|
216
|
+
|
217
|
+
を実行してログを確認してみましたが、どの部分を確認すればいいか多すぎて取り組めない状況です。
|
218
|
+
|
219
|
+
|
220
|
+
|
221
|
+
assets:precomlileで止まるので、
|
222
|
+
|
223
|
+
```terminal
|
224
|
+
|
225
|
+
less log/production.log
|
226
|
+
|
227
|
+
```
|
228
|
+
|
229
|
+
を試してみましたが、特に期待するようなエラーはありませんでした。
|
230
|
+
|
231
|
+
したが実行結果です。
|
232
|
+
|
233
|
+
![イメージ説明](7d13cbd21bf816e96460d17306d6ffb8.jpeg)
|
234
|
+
|
235
|
+
|
236
|
+
|
187
237
|
asset precompileについて言及しているみたいで調べてみると
|
188
238
|
|
189
239
|
JavaScriptの読み込みができていないという記事は見つけましたが、ローカル環境では普通に動いている状況です。
|
190
240
|
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
241
|
+
|
242
|
+
|
243
|
+
```javascript
|
244
|
+
|
245
|
+
// This file is automatically compiled by Webpack, along with any other files
|
246
|
+
|
247
|
+
// present in this directory. You're encouraged to place your actual application logic in
|
248
|
+
|
249
|
+
// a relevant structure within app/javascript and only use these pack files to reference
|
250
|
+
|
251
|
+
// that code so it'll be compiled.
|
252
|
+
|
253
|
+
|
254
|
+
|
255
|
+
require("@rails/ujs").start()
|
256
|
+
|
257
|
+
require("turbolinks").start()
|
258
|
+
|
259
|
+
require("@rails/activestorage").start()
|
260
|
+
|
261
|
+
require("channels")
|
262
|
+
|
263
|
+
require('jquery')
|
264
|
+
|
265
|
+
require('../scroll')
|
266
|
+
|
267
|
+
require('../modal')
|
268
|
+
|
269
|
+
|
270
|
+
|
271
|
+
|
272
|
+
|
273
|
+
// Uncomment to copy all static images under ../images to the output folder and reference
|
274
|
+
|
275
|
+
// them with the image_pack_tag helper in views (e.g <%= image_pack_tag 'rails.png' %>)
|
276
|
+
|
277
|
+
// or the `imagePath` JavaScript helper below.
|
278
|
+
|
279
|
+
//
|
280
|
+
|
281
|
+
// const images = require.context('../images', true)
|
282
|
+
|
283
|
+
// const imagePath = (name) => images(name, true)
|
284
|
+
|
285
|
+
```
|
286
|
+
|
287
|
+
|
288
|
+
|
289
|
+
JavaScript関連のgemを追加してみました。
|
290
|
+
|
291
|
+
```gemfile
|
292
|
+
|
293
|
+
gem 'sprockets-es6'
|
294
|
+
|
295
|
+
```
|
296
|
+
|
297
|
+
|
298
|
+
|
299
|
+
|
300
|
+
|
301
|
+
### 補足情報(FW/ツールのバージョンなど)
|
302
|
+
|
303
|
+
ruby 2.6.5
|
304
|
+
|
305
|
+
rails 6.0.0
|
306
|
+
|
307
|
+
|
308
|
+
|
309
|
+
|
310
|
+
|
311
|
+
ここにより詳細な情報を記載してください。
|
1
もう少し詳しくエラーを記載
test
CHANGED
File without changes
|
test
CHANGED
@@ -28,6 +28,72 @@
|
|
28
28
|
|
29
29
|
```
|
30
30
|
|
31
|
+
00:10 deploy:assets:precompile
|
32
|
+
|
33
|
+
01 $HOME/.rbenv/bin/rbenv exec bundle exec rake assets:precompile
|
34
|
+
|
35
|
+
01 yarn install v1.22.5
|
36
|
+
|
37
|
+
01 [1/4] Resolving packages...
|
38
|
+
|
39
|
+
01 [2/4] Fetching packages...
|
40
|
+
|
41
|
+
01 info fsevents@2.1.3: The platform "linux" is incompatible with this module.
|
42
|
+
|
43
|
+
01 info "fsevents@2.1.3" is an optional dependency and failed compatibility check. Excluding it from installation.
|
44
|
+
|
45
|
+
01 info fsevents@1.2.13: The platform "linux" is incompatible with this module.
|
46
|
+
|
47
|
+
01 info "fsevents@1.2.13" is an optional dependency and failed compatibility check. Excluding it from installation.
|
48
|
+
|
49
|
+
01 [3/4] Linking dependencies...
|
50
|
+
|
51
|
+
01 warning " > webpack-dev-server@3.11.0" has unmet peer dependency "webpack@^4.0.0 || ^5.0.0".
|
52
|
+
|
53
|
+
01 warning "webpack-dev-server > webpack-dev-middleware@3.7.2" has unmet peer dependency "webpack@^4.0.0".
|
54
|
+
|
55
|
+
01 [4/4] Building fresh packages...
|
56
|
+
|
57
|
+
01 Done in 11.94s.
|
58
|
+
|
59
|
+
01 yarn install v1.22.5
|
60
|
+
|
61
|
+
01 [1/4] Resolving packages...
|
62
|
+
|
63
|
+
01 [2/4] Fetching packages...
|
64
|
+
|
65
|
+
01 info fsevents@2.1.3: The platform "linux" is incompatible with this module.
|
66
|
+
|
67
|
+
01 info "fsevents@2.1.3" is an optional dependency and failed compatibility check. Excluding it from installation.
|
68
|
+
|
69
|
+
01 info fsevents@1.2.13: The platform "linux" is incompatible with this module.
|
70
|
+
|
71
|
+
01 info "fsevents@1.2.13" is an optional dependency and failed compatibility check. Excluding it from installation.
|
72
|
+
|
73
|
+
01 [3/4] Linking dependencies...
|
74
|
+
|
75
|
+
01 warning " > webpack-dev-server@3.11.0" has unmet peer dependency "webpack@^4.0.0 || ^5.0.0".
|
76
|
+
|
77
|
+
01 warning "webpack-dev-server > webpack-dev-middleware@3.7.2" has unmet peer dependency "webpack@^4.0.0".
|
78
|
+
|
79
|
+
01 [4/4] Building fresh packages...
|
80
|
+
|
81
|
+
01 Done in 4.37s.
|
82
|
+
|
83
|
+
01 rake aborted!
|
84
|
+
|
85
|
+
01 Sass::SyntaxError: wrong number of arguments (given 4, expected 1..3) for `rgb'
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
--------
|
90
|
+
|
91
|
+
省略
|
92
|
+
|
93
|
+
--------
|
94
|
+
|
95
|
+
|
96
|
+
|
31
97
|
** DEPLOY FAILED
|
32
98
|
|
33
99
|
** Refer to log/capistrano.log for details. Here are the last 20 lines:
|
@@ -118,6 +184,10 @@
|
|
118
184
|
|
119
185
|
というエラーが表示されました。
|
120
186
|
|
187
|
+
asset precompileについて言及しているみたいで調べてみると
|
188
|
+
|
189
|
+
JavaScriptの読み込みができていないという記事は見つけましたが、ローカル環境では普通に動いている状況です。
|
190
|
+
|
121
191
|
```
|
122
192
|
|
123
193
|
DEBUG [557c0069] Tasks: TOP => assets:precompile
|