-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
29 lines (28 loc) · 1.18 KB
/
config.js
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
/**
* config.js
*
* general environment configuration options for the payment server
*/
module.exports = {
environment: "development",
db_host: "db_host",
db_user: "klearchoice",
db_password: "KC02242012",
dwolla_id: "812-708-2911", //this is the id of klearchoice's account
dwolla_app_id: "1JUZIa33HXhhyyDhX3PpT6XDk8vp3B0NtO0lQe7rbxKiOhYTGI",
dwolla_app_secret: "pTqTyg6VCVMO6UlgXnarzqndt3mJLDJdJNiI4dLSwDo3rIoi3/",
create_batch_frequency: 1000 * 10, /* frequency to poll db in ms */
process_jobs_frequency: 1000 * 10, /* frequency to check the job path for new job files */
payment_api_url: "https://www.dwolla.com/oauth/rest/transactions/guestsend",
incoming_account_path: "/home/incoming",
account_path: "/home/payment/accounts",
error_path: "/home/payment/errors",
processing_path: "/home/payment/processing",
job_path: "/home/payment/jobs",
processed_path: "/home/payment/processed",
public_key_path: "/home/payment/keys/payment_server.pub",
private_key_path: "/home/payment/keys/payment_server.pem",
batch_control_file: "/home/payment/batch_control.json",
override_dwolla_email_address: "[email protected]",
mandrill_api_key: "15gKhFNatFZZsafWyFL42g"
}