-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.php
36 lines (32 loc) · 966 Bytes
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
* bunq-to-lunchmoney
* bunq to Lunch Money
*
* @author Mark Jongkind <[email protected]>
* @license http://opensource.org/licenses/mit-license.php MIT License
*
* Uses the official bunq PHP SDK
* https://github.com/bunq/sdk_php
*
*
* bunq-to-lunchmoney configuration settings
*/
/**
* bunq settings
*/
const bunqApiKey = '[YOUR BUNQ API KEY]';
const bunqCallbackUrl = 'https://bunq-to-lunchmoney.example.com/callback.php';
const bunqFileName = 'bunq.conf'; // Replace with your own secure location to store the API context details
const bunqIsSandbox = true;
const bunqIsCompany = false;
const bunqDeviceDescription = 'bunq-to-lunchmoney';
const bunqPermittedIps = [];
/**
* Lunch Money settings
*/
const lunchMoneyAccessToken = '[YOUR LUNCH MONEY ACCESS TOKEN]';
// Map bunq MonetaryAccountBankId to the corresponding Lunch Money asset ID
const lunchMoneyMapping = [];
const lunchMoneyApiUrl = 'https://dev.lunchmoney.app/v1';
?>