Skip to content

Commit

Permalink
Pass passport RSA keys as env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
Bubka committed Apr 14, 2022
1 parent c2e2cb6 commit 855374a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@
"postdeploy": "php artisan passport:install;php artisan storage:link"
},
"env": {
"PASSPORT_PRIVATE_KEY": {
"description": "The RSA private key used to generate OAUTH security token",
"value": "secret"
},
"PASSPORT_PUBLIC_KEY": {
"description": "The public key derivated from your private key",
"value": "secret"
},
"APP_KEY": {
"generator": "secret"
},
Expand Down

0 comments on commit 855374a

Please sign in to comment.