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	web_register = {
23		to = "cheogram",
24		from = "jmp-register@localhost"
25	},
26	bandwidth_site = "",
27	braintree = {
28		environment = "sandbox",
29		merchant_id = "",
30		public_key = "",
31		private_key = "",
32		merchant_accounts = {
33			USD = "",
34			CAD = ""
35		}
36	},
37	plans = ./plans.dhall
38	electrum = ./electrum.dhall,
39	oxr_app_id = "",
40	activation_amount = 15,
41	credit_card_url = \(jid: Text) -> \(customer_id: Text) ->
42		"https://pay.jmp.chat/${jid}/credit_cards?customer_id=${customer_id}"
43}