質問編集履歴

4

修正

2019/10/12 14:25

投稿

avicii
avicii

スコア49

test CHANGED
File without changes
test CHANGED
@@ -21,6 +21,8 @@
21
21
  ⇨指摘してもらった後の変化
22
22
 
23
23
  ![イメージ説明](fbc49a60e2018b3d16cfad0b21097d95.png)
24
+
25
+ ![イメージ説明](f4f9f1e9d95b3f6e4e9c161efcc0ed62.png)
24
26
 
25
27
 
26
28
 

3

修正

2019/10/12 14:25

投稿

avicii
avicii

スコア49

test CHANGED
File without changes
test CHANGED
@@ -17,6 +17,10 @@
17
17
  **メールの結果**
18
18
 
19
19
  ![イメージ説明](12b9ca4d6fcbde28e1a28cf121d8c2c7.png)
20
+
21
+ ⇨指摘してもらった後の変化
22
+
23
+ ![イメージ説明](fbc49a60e2018b3d16cfad0b21097d95.png)
20
24
 
21
25
 
22
26
 

2

修正

2019/10/12 11:02

投稿

avicii
avicii

スコア49

test CHANGED
File without changes
test CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  **サインアップページ**
12
12
 
13
- ![イメージ説明](12bdf690395bdbe4716fad5b277f472a.png)
13
+ ![イメージ説明](936128a5338f332bc3d85e812eda5744.png)
14
14
 
15
15
 
16
16
 

1

修正

2019/10/11 09:43

投稿

avicii
avicii

スコア49

test CHANGED
File without changes
test CHANGED
@@ -71,3 +71,41 @@
71
71
  end
72
72
 
73
73
  ```
74
+
75
+
76
+
77
+ environments/development.rb
78
+
79
+ ```environments
80
+
81
+ config.consider_all_requests_local = true
82
+
83
+ config.action_controller.perform_caching = false
84
+
85
+ config.action_mailer.delivery_method = :smtp
86
+
87
+ config.action_mailer.smtp_settings = {
88
+
89
+ address: 'smtp.gmail.com',
90
+
91
+ port: 587,
92
+
93
+ domain: 'gmail.com',
94
+
95
+ user_name: '############@gmail.com',
96
+
97
+ password: '###########',
98
+
99
+ authentication: 'plain',
100
+
101
+ enable_starttls_auto: true
102
+
103
+ }
104
+
105
+ config.action_mailer.default_url_options = { host: 'localhost', port: 3000 }
106
+
107
+ config.action_mailer.asset_host = config.action_controller.asset_host
108
+
109
+ config.action_controller.asset_host = 'http://localhost:3000'
110
+
111
+ ```