-
Notifications
You must be signed in to change notification settings - Fork 0
/
secrets.list.example
63 lines (50 loc) · 1.94 KB
/
secrets.list.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
# Notes:
# - Copy this file and rename it to secrets.list
# - Enter all secrets here. Omit single/double quotation marks around strings (they will be taken literally)
# - True/False valus are denoted as 0 and 1
# - Make sure to remove all explanatory comments right of the key-value assignments (they will be assigned to the key otherwise)
# - Values which are set here already probably don't need to be changed (if used in development environment)
# Environment. Valid values: 'dev','stg','prd'
ENV=dev
# Basic auth for Flask endpoints (e.g. on api.crowdbreaks.org)
BASIC_AUTH_USERNAME=
BASIC_AUTH_PASSWORD=
# Elasticserach
ELASTICSEARCH_HOST=elasticsearch # Elasticsearch host, in development runs in local docker container
ELASTICSEARCH_PORT=9200
# AWS
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_REGION=
S3_BUCKET= # S3 bucket to store stream data to
# Redis
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_DB=0
# Redis queues/namespaces
REDIS_NAMESPACE=cb # Application namespace
REDIS_STREAM_QUEUE_KEY=stream # Stream namespace
# Stream
PAUSE_STREAM_ON_STARTUP=1 # Stream data on start up
# Twitter
CONSUMER_KEY=
CONSUMER_SECRET=
OAUTH_TOKEN=
OAUTH_TOKEN_SECRET=
# Celery
CELERY_BROKER_URL=redis://redis:6379/0 # Use local redis as message broker and result backend
CELERY_RESULT_BACKEND=redis://redis:6379/0
# Nginx
API_VIRTUALHOST=api-stg.crowdbreaks.org
KIBANA_VIRTUALHOST=kibana-stg.crowdbreaks.org
KIBANA_HOST=search-XXX.XXX.es.amazonaws.com/_plugin/kibana/ # KIBANA_VIRTUALHOST redirects to KIBANA_HOST
# email
SEND_EMAILS=1 # Send out any emails (Emails are only sent if ENV=prd)
EMAIL_STREAM_STATUS_DAILY= # Send-to address for daily updates
EMAIL_STREAM_STATUS_WEEKLY= # Send-to address for weekly updates
MANDRILL_API_KEY=
# Rollbar
ROLLBAR_ACCESS_TOKEN=
# Other
TIMEZONE=Europe/Zurich