-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.env.template
43 lines (38 loc) · 1.07 KB
/
.env.template
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
### Scheduler configuration
# Mandatory: No
# Expected values: Frequency in seconds
# Default values:
FB_FETCH_FREQUENCY=""
DISPATCHER_FREQUENCY=""
LATEST_CHECK_THRESHOLD=""
### AWS configuration
## Account credentials
# Mandatory: Yes
# Expected values: Strings with your AWS access key/secret.
# Default values: "DEFAULT_KEY", "DEFAULT_SECRET" and "ap-south-1" respectively
AWS_ACCESS_KEY_ID=""
AWS_SECRET_ACCESS_KEY=""
AWS_REGION=""
## DynamoDB endpoint
# Mandatory: No (needed only for Localhost)
# Expected value: URL to DynamoDB instance
# Default value: "" (empty string)
DYNAMODB_ENDPOINT=""
### C3PO configuration
## C3PO endpoint
# Mandatory: Yes
# Expected value: URL to C3PO instance
# Default value: http://c3po:8000
C3PO_URI=""
## C3PO passcode (used for /post)
# Mandatory: Yes
# Expected value: Same as whatever is set in C-3PO
# Default value: hellothere
WHOAMI=""
### Facebook configuration
# Mandatory: Yes
# Expected values: Graph API AppID/Secret/token
# Default values: Not specified since these involve rate limits
FB_APP_ID=""
FB_APP_SECRET=""
FB_SHORT_ACCESS_TOKEN=""