-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
59 lines (35 loc) · 1.12 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
# The host on which the app runs
export APP_HOST=0.0.0.0
# The port on which the app runs
export APP_PORT=5000
# Number of gunicorn workers
export WORKERS_COUNT=1
# 0: logs are disabled
# 1: logs are printed to the console
# 2: logs are also written to debug.log
export WRITE_LOGS=1
# The file to where the logs should be written
export LOG_FILE=logs/debug.log
# Color Wheel - Revolution duration
# This represents the time (in seconds) it takes for the HUE value to go from 0 to 360
export COLOR_WHEEL_REVOLUTION_DURATION=31557600
# Color Wheel - Base time
# This is the UNIX timestamp used as a starting point to determine the HUE value
export COLOR_WHEEL_BASE_TIME=1539550007
# Database host
export DB_HOST=localhost
# Database port
export DB_PORT=27017
# Database name
export DB_NAME=prospect
# Sentry DSN
export SENTRY_DSN=
# Secret token
# This token is used to authenticate inbound requests
# The API will look for the token in the Authorization header
export TOKEN=
# Twitter API keys
export TWITTER_CONSUMER_KEY=
export TWITTER_CONSUMER_SECRET=
export TWITTER_ACCESS_TOKEN_KEY=
export TWITTER_ACCESS_TOKEN_SECRET=