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	bandwidth_site = "",
17	braintree = {
18		environment = "sandbox",
19		merchant_id = "",
20		public_key = "",
21		private_key = "",
22		merchant_accounts = {
23			USD = "",
24			CAD = ""
25		}
26	},
27	plans = ./plans.dhall
28	electrum = ./electrum.dhall,
29	oxr_app_id = "",
30	activation_amount = 15,
31	credit_card_url = \(jid: Text) -> \(customer_id: Text) ->
32		"https://pay.jmp.chat/${jid}/credit_cards?customer_id=${customer_id}"
33}