Skip to content

Commit

Permalink
Merge pull request #105 from desmondmorris/develop
Browse files Browse the repository at this point in the history
Fixes mail config documentation
  • Loading branch information
snipe committed Dec 1, 2013
2 parents 2de48f2 + c08d672 commit db2c751
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Update the file `app/config/local/database.php` with your database name and cred

#### 2.2) Setup Mail Settings

Copy the example mail config `app/config/local/database.example.php` to `database.php`.
Copy the example mail config `app/config/local/mail.example.php` to `mail.php`.
Update the file `app/config/local/mail.php` with your mail settings.

vi app/config/local/mail.php
Expand All @@ -85,7 +85,7 @@ Update the file `boostrap/start.php' under the section `Detect The Application E

#### 2.5) Additional Adjustments

The app is configured to automatically detect if you're in a local, staging, or production environment. Before deploying to a staging or production environment, follow sets 2.1, 2.2, and 2.3 above to tweak each environment as nescessary. Configuration files for each environment can be found in app/config/{environment} (local, staging, and production).
The app is configured to automatically detect if your in a local, staging, or production environment. Before deploying to a staging or production environment, follow sets 2.1, 2.2, and 2.3 above to tweak each environment as nescessary. Configuration files for each environment can be found in app/config/{environment} (local, staging, and production).

-----

Expand Down Expand Up @@ -163,7 +163,9 @@ Loading up the sample data will give you an idea of how this should look, how yo
## Optional Development Stuff
### Set up the debugbar

In dev mode, I use the fabulous [Laravel Debugbar](https://github.com/barryvdh/laravel-debugbar) by @barryvdh.
In dev mode, I use the fabulous [Laravel Debugbar](https://github.com/barryvdh/laravel-debugbar) by @barryvdh. After you've installed/updated composer, you'll need to publish the assets for the debugbar:

php artisan debugbar:publish

The profiler is enabled by default if you have debug set to true in your app.php. You certainly don't have to use it, but it's pretty handy for troubleshooting queries, seeing how much memory your pages are using, etc.

Expand Down

0 comments on commit db2c751

Please sign in to comment.