質問編集履歴
2
rails sのログを読んだ感想を追記しました(´・ω・`)
test
CHANGED
File without changes
|
test
CHANGED
@@ -24,6 +24,36 @@
|
|
24
24
|
|
25
25
|
|
26
26
|
|
27
|
+
### 試したこと
|
28
|
+
|
29
|
+
rails sのログ(?)を読んでいた所
|
30
|
+
|
31
|
+
```
|
32
|
+
|
33
|
+
Rails 5.2.4.2 application starting in development
|
34
|
+
|
35
|
+
```
|
36
|
+
|
37
|
+
という表記を見つけました。
|
38
|
+
|
39
|
+
ということは開発環境で
|
40
|
+
|
41
|
+
開発環境とは・・・localhostで使うdevelopment環境のことです。
|
42
|
+
|
43
|
+
```
|
44
|
+
|
45
|
+
We're sorry, but something went wrong.
|
46
|
+
|
47
|
+
If you are the application owner check the logs for more information.
|
48
|
+
|
49
|
+
```
|
50
|
+
|
51
|
+
というエラーが発生しているのかもしれません。
|
52
|
+
|
53
|
+
謎が深まりました。
|
54
|
+
|
55
|
+
|
56
|
+
|
27
57
|
### 補足情報
|
28
58
|
|
29
59
|
Windows 10 home
|
1
前の質問で指摘していただいた本番環境と開発環境についての説明を追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -3,6 +3,10 @@
|
|
3
3
|
localhostで本番環境のエラーが出るのを治したい
|
4
4
|
|
5
5
|
We're sorry, but something went wrong.のエラーを解決
|
6
|
+
|
7
|
+
本番環境とは・・・Herokuにデプロイ後に使うproduction環境のことです。
|
8
|
+
|
9
|
+
開発環境とは・・・localhostで使うdevelopment環境のことです。
|
6
10
|
|
7
11
|
|
8
12
|
|