-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.example.json
104 lines (104 loc) · 2.06 KB
/
config.example.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"random_org_api_key": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"sendgrid_api_key": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"email_from": {
"email": "[email protected]",
"name": "Your Name"
},
"lottery_game_definitions": [
{
"game_name": "Lottery 5",
"drawing_sets": [
{
"n": 5,
"min": 1,
"max": 90
}
]
},
{
"game_name": "Lottery 6",
"drawing_sets": [
{
"n": 6,
"min": 1,
"max": 45
}
]
},
{
"game_name": "EuroJackpot",
"drawing_sets": [
{
"n": 5,
"min": 1,
"max": 50
},
{
"n": 2,
"min": 1,
"max": 10
}
]
}
],
"lottery_ticket_packs": [
{
"email_to": [
{
"email": "[email protected]",
"name": "Your Name"
}
],
"elements": [
{
"game_name": "Lottery 5",
"number_of_random_tickets": 1,
"permanent_tickets": [[[3, 27, 42, 54, 87]]]
},
{
"game_name": "Lottery 6",
"number_of_random_tickets": 2,
"permanent_tickets": [
[[9, 17, 23, 30, 41, 43]],
[[4, 8, 9, 12, 28, 37]]
]
},
{
"game_name": "EuroJackpot",
"number_of_random_tickets": 1,
"permanent_tickets": [
[
[2, 5, 24, 39, 41],
[2, 8]
],
[
[3, 4, 8, 9, 11],
[5, 9]
]
]
}
]
},
{
"email_to": [
{
"email": "[email protected]",
"name": "Your Brother's Name"
}
],
"elements": [
{
"game_name": "Lottery 5",
"number_of_random_tickets": 2,
"permanent_tickets": []
},
{
"game_name": "Lottery 6",
"number_of_random_tickets": 1,
"permanent_tickets": []
}
]
}
]
}