-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
51 lines (51 loc) · 2.35 KB
/
config.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
{
"settings": {
"enabled": true,
"port": 3000,
"wsPort": 8080,
"title": "Astro Booking System",
"wsURL": "ws://localhost:8080",
"imprintURL": "https://example.com/imprint",
"adminMail": "[email protected]",
"start": "18:00",
"end": "21:00",
"increment": "00:20",
"slotsPerColumn": 16,
"default": {
"lastname": "",
"firstname": "",
"email": "",
"bookedSlots": 0
},
"checks": {
"lastname": 50,
"firstname": 50,
"email": true,
"maxBookedSlots": 5
}
},
"mail": {
"sender": "Astro Booking System",
"mailSubject": "Confirmation for booking !BOOKEDSLOTS slot(s)",
"mailText": "Hello !FIRSTNAME, \n\nwe confirm your booking. Here are the details:\n* Name: !FIRSTNAME !LASTNAME\n* E-Mail: !EMAIL\n* Booked slots: !BOOKEDSLOTS\n* Timeslot: !TIMESLOT\nRemember to be at XXX 5 minutes before !TIMESLOT on YYY. We hope you have a great time :)\n\nSincerely\nthe Astroteam",
"editMailSubject": "We have edited your booking for the event",
"editMailText": "Hello !FIRSTNAME, \n\nwe confirm an edit to your previous booking:\n* Name: !FIRSTNAME !LASTNAME\n* E-Mail: !EMAIL\n* Booked slots: !BOOKEDSLOTS\n* Timeslot: !TIMESLOT\n\nYour new updated information:\n* Name: !NEWFIRSTNAME !NEWLASTNAME\n* E-Mail: !NEWEMAIL\n* Booked slots: !NEWBOOKEDSLOTS\n* Timeslot: !NEWTIMESLOT\n\nSincerely\nthe Astroteam",
"deleteMailSubject": "We have canelled your booking for the event",
"deleteMailText": "Hello !FIRSTNAME, \n\nwe removed the following booking:\n* Name: !FIRSTNAME !LASTNAME\n* E-Mail: !EMAIL\n* Booked slots: !BOOKEDSLOTS\n* Timeslot: !TIMESLOT\nSince we've canelled your booking, you don't have to be at XXX by !TIMESLOT anymore.\n\nSincerely\nthe Astroteam"
},
"log": {
"enabled": false,
"ips": true,
"requests": true,
"log_path": "./logs/",
"log_extension": ".log"
},
"html-meta-data": {
"title": "I forgot to customize my project!",
"description": "Book your visit!",
"url": "https://astro.example.com/",
"image": "https://apod.nasa.gov/apod/image/1611/PacmanCrawfordNew2048.jpg",
"large_image": true,
"color": "#b58ef2"
}
}