Skip to content

Commit

Permalink
feat: add passport config file (monicahq#1846)
Browse files Browse the repository at this point in the history
  • Loading branch information
asbiin authored Sep 26, 2018
1 parent e3e9fcb commit 213a7d0
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ UNRELEASED CHANGES:
* Support papertrail logging
* Add sentry:release command
* Add Envoy file template
* Add passport config file

RELEASED VERSIONS:

Expand Down
20 changes: 20 additions & 0 deletions config/passport.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

return [

/*
|--------------------------------------------------------------------------
| Encryption Keys
|--------------------------------------------------------------------------
|
| Passport uses encryption keys while generating secure access tokens for
| your application. By default, the keys are stored as local files but
| can be set via environment variables when that is more convenient.
|
*/

'private_key' => env('PASSPORT_PRIVATE_KEY'),

'public_key' => env('PASSPORT_PUBLIC_KEY'),

];

0 comments on commit 213a7d0

Please sign in to comment.