forked from jeremykenedy/laravel-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
completed working build, ready for use
- Loading branch information
jeremykenedy
committed
Oct 22, 2015
0 parents
commit 04d001c
Showing
183 changed files
with
18,564 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
APP_ENV=local | ||
APP_DEBUG=true | ||
APP_KEY=SomeRandomString | ||
|
||
DB_HOST=localhost | ||
DB_DATABASE=homestead | ||
DB_USERNAME=YOURDATABSEusernameHERE | ||
DB_PASSWORD=YOURDATABSEpasswordHERE | ||
|
||
CACHE_DRIVER=file | ||
SESSION_DRIVER=file | ||
QUEUE_DRIVER=sync | ||
|
||
MAIL_DRIVER=smtp | ||
MAIL_HOST=smtp.gmail.com | ||
MAIL_PORT=465 | ||
MAIL_USERNAME=YOURGMAILusernameHERE | ||
MAIL_PASSWORD=YOURGMAILpasswordHERE | ||
MAIL_ENCRYPTION=tls | ||
|
||
# https://www.google.com/recaptcha/admin#list | ||
RE_CAP_SITE=YOURGOOGLECAPTCHAsitekeyHERE | ||
RE_CAP_SECRET=YOURGOOGLECAPTCHAsecretHERE | ||
|
||
# https://developers.facebook.com/ | ||
FB_ID=YOURFACEBOOKidHERE | ||
FB_SECRET=YOURFACEBOOKsecretHERE | ||
FB_REDIRECT=http://yourwebsiteURLhere.com/social/handle/facebook | ||
|
||
# https://apps.twitter.com/ | ||
TW_ID=YOURTWITTERidHERE | ||
TW_SECRET=YOURTWITTERkeyHERE | ||
TW_REDIRECT=http://yourwebsiteURLhere.com/social/handle/twitter | ||
|
||
# https://console.developers.google.com/ - NEED OAUTH CREDS | ||
GOOGLE_ID=YOURGOOGLEPLUSidHERE | ||
GOOGLE_SECRET=YOURGOOGLEPLUSsecretHERE | ||
GOOGLE_REDIRECT=http://yourwebsiteURLhere.com/social/handle/google |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
* text=auto | ||
*.css linguist-vendored | ||
*.less linguist-vendored |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
### OSX BOOGERS ### | ||
.DS_Store | ||
*._DS_Store | ||
._.DS_Store | ||
*._ | ||
._* | ||
._.* | ||
|
||
### WINDOWS BOOGERS ### | ||
Thumbs.db | ||
|
||
### Sass ### | ||
#bower_components/* | ||
/.sass-cache/* | ||
.sass-cache | ||
|
||
### SUBLIMETEXT BOOGERS ### | ||
*.sublime-workspace | ||
|
||
### PHPSTORM BOOGERS ### | ||
.idea/* | ||
/.idea/* | ||
|
||
### DIFFERENT TYPE OF MASTER CONFIGS ### | ||
.env | ||
.env-dev | ||
.env-live | ||
.env.dev | ||
.env.production | ||
.env-* | ||
/config/blog.php | ||
/sql | ||
composer.lock | ||
|
||
### ASSET EXCLUSIONS ### | ||
/ref | ||
uploads | ||
vendor | ||
node_modules | ||
Homestead.yaml | ||
Homestead.json | ||
|
||
## IGNORE FOR NOW DUE TO GITHUB CONFLICTS | ||
README.md | ||
readme.md |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php namespace App\Commands; | ||
|
||
abstract class Command { | ||
|
||
// | ||
|
||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?php namespace App\Console\Commands; | ||
|
||
use Illuminate\Console\Command; | ||
use Illuminate\Foundation\Inspiring; | ||
|
||
class Inspire extends Command { | ||
|
||
/** | ||
* The console command name. | ||
* | ||
* @var string | ||
*/ | ||
protected $name = 'inspire'; | ||
|
||
/** | ||
* The console command description. | ||
* | ||
* @var string | ||
*/ | ||
protected $description = 'Display an inspiring quote'; | ||
|
||
/** | ||
* Execute the console command. | ||
* | ||
* @return mixed | ||
*/ | ||
public function handle() | ||
{ | ||
$this->comment(PHP_EOL.Inspiring::quote().PHP_EOL); | ||
} | ||
|
||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php namespace App\Console; | ||
|
||
use Illuminate\Console\Scheduling\Schedule; | ||
use Illuminate\Foundation\Console\Kernel as ConsoleKernel; | ||
|
||
class Kernel extends ConsoleKernel { | ||
|
||
/** | ||
* The Artisan commands provided by your application. | ||
* | ||
* @var array | ||
*/ | ||
protected $commands = [ | ||
'App\Console\Commands\Inspire', | ||
]; | ||
|
||
/** | ||
* Define the application's command schedule. | ||
* | ||
* @param \Illuminate\Console\Scheduling\Schedule $schedule | ||
* @return void | ||
*/ | ||
protected function schedule(Schedule $schedule) | ||
{ | ||
$schedule->command('inspire') | ||
->hourly(); | ||
} | ||
|
||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php namespace App\Events; | ||
|
||
abstract class Event { | ||
|
||
// | ||
|
||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?php namespace App\Exceptions; | ||
|
||
use Exception; | ||
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; | ||
|
||
class Handler extends ExceptionHandler { | ||
|
||
/** | ||
* A list of the exception types that should not be reported. | ||
* | ||
* @var array | ||
*/ | ||
protected $dontReport = [ | ||
'Symfony\Component\HttpKernel\Exception\HttpException' | ||
]; | ||
|
||
/** | ||
* Report or log an exception. | ||
* | ||
* This is a great spot to send exceptions to Sentry, Bugsnag, etc. | ||
* | ||
* @param \Exception $e | ||
* @return void | ||
*/ | ||
public function report(Exception $e) | ||
{ | ||
return parent::report($e); | ||
} | ||
|
||
/** | ||
* Render an exception into an HTTP response. | ||
* | ||
* @param \Illuminate\Http\Request $request | ||
* @param \Exception $e | ||
* @return \Illuminate\Http\Response | ||
*/ | ||
public function render($request, Exception $e) | ||
{ | ||
return parent::render($request, $e); | ||
} | ||
|
||
} |
Empty file.
Empty file.
Oops, something went wrong.