mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
9 lines
262 B
TypeScript
9 lines
262 B
TypeScript
import { registerAs } from '@nestjs/config';
|
|
|
|
export default registerAs('plaid', () => ({
|
|
env: process.env.PLAID_ENV || 'sandbox',
|
|
clientId: process.env.PLAID_CLIENT_ID,
|
|
secret: process.env.PLAID_SECRET,
|
|
linkWebhook: process.env.PLAID_LINK_WEBHOOK,
|
|
}));
|