This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ActionMailer::Base.smtp_settings = { | |
:address => 'email-smtp.us-east-1.amazonaws.com', | |
:port => 25, | |
:authentication => 'login', | |
# The following 2 of course shouldn't be in here. When you open SES on the AWS Mangaement Console, they | |
# provide a link to create STMP users within Amazon. Just follow that and you'll get username and password. | |
:user_name => ENV['EMAIL_USERNAME'], | |
:password => ENV['EMAIL_PASSWORD'], | |
:domain => 'mysquar.com', | |
:enable_starttls_auto => true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
database: | |
override: | |
- mkdir -p config | |
- | | |
echo 'test: | |
host: localhost | |
username: ubuntu | |
database: circle_ruby_test | |
adapter: postgresql | |
' > config/database.yml |
NewerOlder