forked from JonathanRAZ/Claws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.dist
32 lines (32 loc) · 961 Bytes
/
.env.dist
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
PORT=3000
TMDB_API_KEY=""
SECRET_CLIENT_ID=""
# Either "server" or "client".
# The "scrape" event functionality is enabled when it's running in server mode.
CLAWS_ENV="server"
# Disables Rate Limiter
RATE_LIMITER="false"
# Disables PM2 logging
DISABLE_PM2_LOGGING="true"
# Show the development UI when running in production mode.
SHOW_DEV_UI='false'
# Winston minimum log level
LOG_LEVEL="debug"
# Winston logs
SILENCE_LOGS="false"
# Winston file logging
FILE_LOGGING="false"
# Enable / Disable Kue (should be enabled for optimizations)
ENABLE_QUEUE=true
# Number of concurrent active jobs that Kue will process
QUEUE_ACTIVE_JOB_NUMBER=4
# Max Kue retries in case of error
QUEUE_MAX_RETRIES=3
# Show Kue debug UI
ENABLE_KUE_UI=true
# Port to open Kue debug UI on
KUE_UI_PORT=3001
# Specify the user agent to use for all requests.
CLAWS_DEFAULT_UA=''
# Whether to disable resolving provider links. Useful when running tests.
CLAWS_DONT_RESOLVE_PROVIDERS='false'