~singpolyma/sgx-jmp

ref: d1f8b6acad86682198b42e074962df3aa732ed56 sgx-jmp/config.dhall.sample -rw-r--r-- 553 bytes
d1f8b6acStephen Paul Weber New signup: go to web to choose credit card 2 years ago
                                                                                
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
{
	component = {
		jid = "component.localhost",
		secret = "secret"
	},
	server = {
		host = "localhost",
		port = 5347
	},
	sgx = "component2.localhost",
	creds = toMap {
		nick = "userid",
		username = "token",
		password = "secret"
	},
	braintree = {
		environment = "sandbox",
		merchant_id = "",
		public_key = "",
		private_key = "",
		merchant_accounts = {
			USD = "",
			CAD = ""
		}
	},
	plans = ./plans.dhall
	credit_card_url = \(jid: Text) -> \(customer_id: Text) ->
		"https://pay.jmp.chat/${jid}/credit_cards?customer_id=${customer_id}"
}