Merge pull request #2487 from toolness/patch-2

Update DEVELOPER-ADVANCED.md with Sidekiq info
This commit is contained in:
Robin Ward 2014-07-01 11:28:47 -04:00
commit de17c693fc
1 changed files with 6 additions and 0 deletions

View File

@ -132,6 +132,12 @@ config.action_mailer.smtp_settings = { address: "localhost", port: 1025 }
Set up [MailCatcher](https://github.com/sj26/mailcatcher) so the app can intercept
outbound email and you can verify what is being sent.
Note also that mail is sent asynchronously by Sidekiq, so you'll need to have it running to process jobs. Run it with this command:
```
bundle exec sidekiq
```
## Phantomjs
Needed to run javascript tests.