質問編集履歴

9

誤字

2020/12/16 12:17

投稿

ken1203
ken1203

スコア24

test CHANGED
File without changes
test CHANGED
@@ -32,7 +32,7 @@
32
32
 
33
33
  unicornを起動すると下記の画面になります。
34
34
 
35
- [![イメージ説明](b0236efe6aba98d5894043f649010cd2.png)](b66ab4f9acb0d62bbcdf9c201e135dfc.png)
35
+ ![イメージ説明](b0236efe6aba98d5894043f649010cd2.png)
36
36
 
37
37
 
38
38
 

8

説明不足のため

2020/12/16 12:17

投稿

ken1203
ken1203

スコア24

test CHANGED
File without changes
test CHANGED
@@ -32,7 +32,7 @@
32
32
 
33
33
  unicornを起動すると下記の画面になります。
34
34
 
35
- ![![イメージ説明](b0236efe6aba98d5894043f649010cd2.png)](b66ab4f9acb0d62bbcdf9c201e135dfc.png)
35
+ [![イメージ説明](b0236efe6aba98d5894043f649010cd2.png)](b66ab4f9acb0d62bbcdf9c201e135dfc.png)
36
36
 
37
37
 
38
38
 

7

説明不足のため

2020/12/16 06:20

投稿

ken1203
ken1203

スコア24

test CHANGED
File without changes
test CHANGED
@@ -32,7 +32,7 @@
32
32
 
33
33
  unicornを起動すると下記の画面になります。
34
34
 
35
- [リンク内容](https://gyazo.com/bd18df6f6a07c5fdf998e7977fe70bb2)
35
+ ![![イメージ説明](b0236efe6aba98d5894043f649010cd2.png)](b66ab4f9acb0d62bbcdf9c201e135dfc.png)
36
36
 
37
37
 
38
38
 

6

誤字

2020/12/16 06:19

投稿

ken1203
ken1203

スコア24

test CHANGED
File without changes
test CHANGED
@@ -56,9 +56,7 @@
56
56
 
57
57
  [ec2-user@************ Dr_tetsu]$ RAILS_SERVE_STATIC_FILES=1 unicorn_rails -c config/unicorn.rb -E production -D
58
58
 
59
- [ec2-user@***********
59
+ [ec2-user@***********Dr_tetsu]$
60
-
61
- Dr_tetsu]$
62
60
 
63
61
 
64
62
 

5

誤字

2020/12/16 04:21

投稿

ken1203
ken1203

スコア24

test CHANGED
File without changes
test CHANGED
@@ -174,6 +174,8 @@
174
174
 
175
175
  Gemfile
176
176
 
177
+
178
+
177
179
  source 'https://rubygems.org'
178
180
 
179
181
  git_source(:github) { |repo| "https://github.com/#{repo}.git" }

4

説明不足のため

2020/12/16 04:02

投稿

ken1203
ken1203

スコア24

test CHANGED
File without changes
test CHANGED
@@ -167,3 +167,143 @@
167
167
  初心者で言葉足らずで申し訳ありませんがご教示頂けたらと思い質問させて頂きました。
168
168
 
169
169
  宜しくお願い致します。
170
+
171
+ ### 補足
172
+
173
+ ```ここに言語を入力
174
+
175
+ Gemfile
176
+
177
+ source 'https://rubygems.org'
178
+
179
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
180
+
181
+
182
+
183
+ ruby '2.5.1'
184
+
185
+
186
+
187
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
188
+
189
+ gem 'rails', '~> 6.0.3', '>= 6.0.3.4'
190
+
191
+ # Use mysql as the database for Active Record
192
+
193
+ gem 'mysql2', '>= 0.5.3'
194
+
195
+ # Use Puma as the app server
196
+
197
+ gem 'puma', '~> 4.1'
198
+
199
+ # Use SCSS for stylesheets
200
+
201
+ gem 'sass-rails', '>= 6'
202
+
203
+ # Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
204
+
205
+ gem 'webpacker', '~> 4.0'
206
+
207
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
208
+
209
+ gem 'turbolinks', '~> 5'
210
+
211
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
212
+
213
+ gem 'jbuilder', '~> 2.7'
214
+
215
+ # Use Redis adapter to run Action Cable in production
216
+
217
+ # gem 'redis', '~> 4.0'
218
+
219
+ # Use Active Model has_secure_password
220
+
221
+ # gem 'bcrypt', '~> 3.1.7'
222
+
223
+
224
+
225
+ # Use Active Storage variant
226
+
227
+ # gem 'image_processing', '~> 1.2'
228
+
229
+
230
+
231
+ # Reduces boot times through caching; required in config/boot.rb
232
+
233
+ gem 'bootsnap', '>= 1.4.2', require: false
234
+
235
+
236
+
237
+ group :development, :test do
238
+
239
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
240
+
241
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
242
+
243
+ end
244
+
245
+
246
+
247
+ group :development do
248
+
249
+ # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
250
+
251
+ gem 'web-console', '>= 3.3.0'
252
+
253
+ gem 'listen', '~> 3.2'
254
+
255
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
256
+
257
+ gem 'spring'
258
+
259
+ gem 'spring-watcher-listen', '~> 2.0.0'
260
+
261
+ end
262
+
263
+
264
+
265
+ group :test do
266
+
267
+ # Adds support for Capybara system testing and selenium driver
268
+
269
+ gem 'capybara', '>= 2.15'
270
+
271
+ gem 'selenium-webdriver'
272
+
273
+ # Easy installation and use of web drivers to run system tests with browsers
274
+
275
+ gem 'webdrivers'
276
+
277
+ end
278
+
279
+ group :production do
280
+
281
+ gem 'unicorn', '5.4.1'
282
+
283
+ end
284
+
285
+
286
+
287
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
288
+
289
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
290
+
291
+ gem 'actiontext'
292
+
293
+ gem 'image_processing', '~> 1.2'
294
+
295
+ gem 'haml-rails'
296
+
297
+ gem 'bourbon'
298
+
299
+ gem 'devise'
300
+
301
+ gem 'jquery-rails'
302
+
303
+ gem 'font-awesome-sass'
304
+
305
+ gem 'fog-aws'
306
+
307
+
308
+
309
+ ```

3

説明不足のため

2020/12/16 04:02

投稿

ken1203
ken1203

スコア24

test CHANGED
File without changes
test CHANGED
@@ -56,7 +56,9 @@
56
56
 
57
57
  [ec2-user@************ Dr_tetsu]$ RAILS_SERVE_STATIC_FILES=1 unicorn_rails -c config/unicorn.rb -E production -D
58
58
 
59
- [ec2-user@ip-172-31-0-206 Dr_tetsu]$
59
+ [ec2-user@***********
60
+
61
+ Dr_tetsu]$
60
62
 
61
63
 
62
64
 

2

説明不足のため

2020/12/15 12:28

投稿

ken1203
ken1203

スコア24

test CHANGED
File without changes
test CHANGED
@@ -154,7 +154,7 @@
154
154
 
155
155
  [リンク内容](https://qiita.com/masahisa/items/d1c98200981574dfc22f)
156
156
 
157
- 仮説としてactiton textをデプロイするための準備が不十分?であると
157
+ 仮説としてactiton textを本番環境にて起動するための準備が不十分?であると
158
158
 
159
159
  考えています。
160
160
 

1

説明不足のため

2020/12/15 12:01

投稿

ken1203
ken1203

スコア24

test CHANGED
File without changes
test CHANGED
@@ -146,15 +146,17 @@
146
146
 
147
147
  ActionView::Template::Error (couldn't find file 'trix/dist/trix' with type 'text/css'
148
148
 
149
+ ```
150
+
149
151
  について調べました。
150
152
 
151
153
  下記のリンクを参照して確認しましたが、エラー解決に至りませんでした。
152
154
 
155
+ [リンク内容](https://qiita.com/masahisa/items/d1c98200981574dfc22f)
156
+
153
157
  仮説としてactiton textをデプロイするための準備が不十分?であると
154
158
 
155
159
  考えています。
156
-
157
- ```
158
160
 
159
161
  ### 補足
160
162