-
Notifications
You must be signed in to change notification settings - Fork 3
/
.sample.env
46 lines (36 loc) · 1.22 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
# RingCentral App Credentials
## create app from developer.ringcentral.com
## common required
RINGCENTRAL_SERVER=https://platform.devtest.ringcentral.com
RINGCENTRAL_BOT_SERVER=https:xxxxx.ngrok.io
## for bots auth required
RINGCENTRAL_BOT_CLIENT_ID=
RINGCENTRAL_BOT_CLIENT_SECRET=
## for user auth, could be empty if do not need user auth
RINGCENTRAL_USER_CLIENT_ID=
RINGCENTRAL_USER_CLIENT_SECRET=
## extensions, separate by `,`
# example: EXTENSIONS=ringcentral_bot_framework_extension_botinfo,ringcentral_bot_framework_extension_some_other_extnesion
# find more ringcentral_bot_framework_extensions from pypi.org, search by keyword `ringcentral_bot_framework_extension`
EXTENSIONS=
## Dataviewer visit /data to check database data json
# enable it by set to `yes`
# Default is disbaled
DATA_VIEWER_ENABLED=no
## Database
## db module
## filedb -- built-in filedb
## dynamodb -- built-in dynamodb
## custom -- use custom `dbWrapper` function defined in config.py
DB_TYPE=filedb
## filedb config
FILEDB_FOLDER_NAME=filedb
## DynamoDB config
DYNAMODB_TABLE_PREFIX=ringcentral_bot1
DYNAMODB_ReadCapacityUnits=1
DYNAMODB_WriteCapacityUnits=1
AWS_REGION=us-east-1
## local dev server config
PORT=9898
HOST=localhost
FLASK_ENV=development