File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 14
14
# Ignore all logfiles and tempfiles.
15
15
/log /* .log
16
16
/tmp
17
+
18
+ # Ignore application configuration
19
+ /config /application.yml
Original file line number Diff line number Diff line change 16
16
# Don't care if the mailer can't send.
17
17
config . action_mailer . raise_delivery_errors = false
18
18
19
+ # Send email in development mode.
20
+ config . action_mailer . perform_deliveries = true
21
+
22
+ config . action_mailer . smtp_settings = {
23
+ address : "smtp.gmail.com" ,
24
+ port : 587 ,
25
+ domain : "example.com" ,
26
+ authentication : "plain" ,
27
+ enable_starttls_auto : true ,
28
+ user_name : ENV [ "GMAIL_USERNAME" ] ,
29
+ password : ENV [ "GMAIL_PASSWORD" ]
30
+ }
31
+
19
32
# Print deprecation notices to the Rails logger.
20
33
config . active_support . deprecation = :log
21
34
You can’t perform that action at this time.
0 commit comments