-
Notifications
You must be signed in to change notification settings - Fork 408
/
.env.example
63 lines (42 loc) · 1.58 KB
/
.env.example
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
#
# Store your bot settings in the variables below
# or via environment variables of the same name
#
# DO NOT PUT SECRETS IN THIS FILE IF YOU'RE PUSHING THE CODE TO EXTERNAL REPOS
#
# - you can reference these variables from your code with process.env.SECRET for example
#
# - note that ".env" is formatted like a shell file, so you may (depending on your platform) need to add double quotes if strings contains spaces
#
# Webex bot account access token
WEBEX_ACCESS_TOKEN=
# Internet facing URL where your bot can be reached for incoming webhooks or
# HTTP web server requests.
# Can be empty if WEBSOCKET_EVENTS is True and the Botkit web server is
# not needed, e.g. if not serving images related to the buttons & cards feature
# or the health check URL
PUBLIC_URL=
# Use websockets instead of webhooks for incoming Webex events (True/False)
WEBSOCKET_EVENTS=True
# Local port where your bot will be started
# defaults to 3000
PORT=3000
# Webex JavaScript SDK debug level
# Values: error, warn, info, debug, trace
WEBEX_LOG_LEVEL=error
# Storage options - enable only one option (default is in-memory only)
# Redis storage URL - enable to use Redis for Botkit conversation persistence/scalability
REDIS_URL=
# MongoDB storage URL - enable to use MongoDB for Botkit conversation persistence/scalability
MONGO_URI=
# Botkit CMS credentials
CMS_URI=
CMS_TOKEN=
# Node environment setting
# defaults to development
NODE_ENV=development
# Bot meta info - displayed when browsing the bot healthcheck/public URL
PLATFORM=Webex
CODE=https://github.com/CiscoDevNet/botkit-template
#OWNER=
#SUPPORT=