config.dhall.sample

 1{
 2	component = {
 3		jid = "component.localhost",
 4		secret = "secret"
 5	},
 6	server = {
 7		host = "localhost",
 8		port = 5347
 9	},
10	sgx = "component2.localhost",
11	creds = {
12		account = "00000",
13		username = "dashboard user",
14		password = "dashboard password"
15	},
16	catapult = {
17		user = "",
18		token = "",
19		secret = "",
20		application_id = ""
21	},
22	bandwidth_site = "",
23	braintree = {
24		environment = "sandbox",
25		merchant_id = "",
26		public_key = "",
27		private_key = "",
28		merchant_accounts = {
29			USD = "",
30			CAD = ""
31		}
32	},
33	plans = ./plans.dhall
34	electrum = ./electrum.dhall,
35	oxr_app_id = "",
36	activation_amount = 15,
37	credit_card_url = \(jid: Text) -> \(customer_id: Text) ->
38		"https://pay.jmp.chat/${jid}/credit_cards?customer_id=${customer_id}"
39}