Skip to content

Commit

Permalink
Create config file and dotenv entries
Browse files Browse the repository at this point in the history
  • Loading branch information
range-of-motion committed Dec 17, 2023
1 parent ba2c485 commit 25533d2
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .env.ci
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,7 @@ STRIPE_SECRET=
STRIPE_PREMIUM_PLAN_PRICE_ID=

DISABLE_REGISTRATION=false

PLAID_CLIENT_ID=
PLAID_CLIENT_SECRET=
PLAID_ENVIRONMENT=
4 changes: 4 additions & 0 deletions .env.docker
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,7 @@ PLANS_PREMIUM_MAXIMUM_SPACES=null
STRIPE_KEY=
STRIPE_SECRET=
STRIPE_PREMIUM_PLAN_PRICE_ID=

PLAID_CLIENT_ID=
PLAID_CLIENT_SECRET=
PLAID_ENVIRONMENT=
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,7 @@ STRIPE_SECRET=
STRIPE_PREMIUM_PLAN_PRICE_ID=

DISABLE_REGISTRATION=false

PLAID_CLIENT_ID=
PLAID_CLIENT_SECRET=
PLAID_ENVIRONMENT=
10 changes: 10 additions & 0 deletions config/plaid.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

return [
'client' => [
'id' => env('PLAID_CLIENT_ID'),
'secret' => env('PLAID_CLIENT_SECRET'),
],

'environment' => env('PLAID_ENVIRONMENT'),
];

0 comments on commit 25533d2

Please sign in to comment.