Problem
You need to bring your application out of "maintenance" mode.
You've been in maintenance mode and are ready to make your application live.
Solution
Use the php artisan up command.
This clears a flag on your application specifying it's no longer in maintenance mode.
$ php artisan up
Discussion
This command deletes a file.
What this command actually does is delete the file app/storage/meta/down.
