-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsample.env
53 lines (37 loc) · 1.92 KB
/
sample.env
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
#Specify the port for epxress to listen on [optional; default = 3000]
PORT=3000
#Specify the port for admin apis to listen on [optional]
#PORT=3001
#If a reverse web proxy is in front of express set to "true" [optional; default = false]
REVERSE_PROXY="false"
#This is the URL that users will visit to join spaces [required]
BASE_URL=""
#The Mongo DB URI to use to store data on public spaces and sessions [required]
MONGO_URI=""
#The access token for the Cisco Webex Teams bot [required]
#Note: The ciscospark package requires this env variable to be set. That package hasn't changed naming to Webex Teams yet.
CISCOSPARK_ACCESS_TOKEN=""
#The Cisco Webex Teams Space ID (roomId) that will have errors posted. Required to test existance of accounts in Cisco Webex Teams [optional]
#WEBEXTEAMS_ADMIN_SPACE_ID=""
#Cisco Webex Teams Webhook secret to verify authenticity of data [optional]
#WEBEXTEAMS_WEBHOOK_SECRET=""
#Messages to send to Cisco Webex Teams to avoid hit ratelimiting [optional; default = 4]
#Note: Currently only used during startup to build membership cache
#WEBEXTEAMS_MESSAGES_PER_SECOND=4
#The URL to the source code repository for this bot [optional; default = https://github.com/birdietiger/publicspaces-webexteams]
#SOURCE_URL=
#The Cisco Webex Teams Space ID (roomId) that users can join to get support [optional]
#WEBEXTEAMS_SUPPORT_SPACE_ID=""
#Restrict the user domains the bot will respond to and add to spaces. If set, disables "internal" setting in spaces [optional]
#PERMIT_DOMAINS=
#Set description used for website listing and messaging help [optional]
#DESCRIPTION=
#Allows users of website to request support via email [optional]
#SUPPORT_EMAIL=
#Allows users of site to request support via portal url [optional]
#SUPPORT_URL=""
#Where to store logs in machine-readable format [optional]
#LOG_FILE=
#Set log level [optional; default = info]
#"error", "warn", "info", "verbose", "debug", or "silly"
#LOG_LEVEL="debug"