forked from CiscoDevNet/botkit-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
50 lines (33 loc) · 1.21 KB
/
.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
#
# 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 Teams bot account access token
WEBEX_ACCESS_TOKEN=
# Internet facing URL where your bot can be reached
PUBLIC_URL=
# Local port where your bot will be started
# defaults to 3000
#PORT=3000
# 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=changeme
# MongoDB storage URL - enable to use MongoDB for Botkit conversation persistence/scalability
#MONGO_URI=changeme
# Botkit CMS credentials
#CMS_URI=changeme
#CMS_TOKEN=changeme
# Node environment setting
# defaults to development
#NODE_ENV=production
# Bot meta info - displayed when browsing the bot healthcheck/public URL
PLATFORM=Webex
CODE=https://github.com/CiscoDevNet/botkit-template
#OWNER=changeme
#SUPPORT=changeme