-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.sample
46 lines (41 loc) · 1.28 KB
/
.env.sample
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
# Dev parameters
#FLASK_DEBUG=1
FLASK_ENV=development
# Required parameters
SMARTSHEET_ACCESS_TOKEN =
WEBEX_INTEGRATION_CLIENT_ID =
WEBEX_INTEGRATION_CLIENT_SECRET =
WEBEX_BOT_TOKEN =
WEBEX_BOT_ROOM_ID =
# Optional parameters
SMARTSHEET_PARAMS = '{
"columns": {
"create": "Create",
"startdate": "Start Date (UTC)",
"starttime": "Start Time (UTC)",
"title": "Full Title for Webex Event",
"agenda": "Description",
"cohosts": "Host(s)",
"panelists": "Presenters (comma separated +<email>)",
"webinarId": "Event ID",
"attendeeUrl": "Webex Attendee URL",
"hostKey": "Host Key",
"registrantCount": "Reg Count"
},
"nicknames": {
"john": {
"email": "johndoe@example.com",
"name": "John Doe"
}
}
}'
# alwaysInvitePanelists: list of people/calendars that are added as Panelists to all webinars
# noCohosts: invite Cohosts as regular attendees, rather than actual cohosts
WEBEX_INTEGRATION_PARAMS = '{
"siteUrl": "mysite.webex.com",
"panelistPassword": "panelistsecret",
"password": "attendeesecret",
"reminderTime": 30,
"alwaysInvitePanelists" : "Calendar <calendar@example.com>, Supervisor <supervisor@example.com>",
"noCohosts": false
}'