-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env.sample
40 lines (27 loc) · 1.1 KB
/
.env.sample
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
# RabbitMQ connection URL
REGISTRY_URL=amqp://guest:guest@localhost
# RabbitMQ Consumer prefetch value (How many tasks can do simultaneously)
SIMULTANEOUS_TASKS=1
# Environment name for the notifications (to distinguish between notifications from different servers)
ENVIRONMENT_NAME=dev
# Log level. Available: error,warn,info,versobe,debug,silly. See more https://github.com/winstonjs/winston#logging
#LOG_LEVEL=verbose
# MongoDB URL for connecting to accounts database
MONGO_ACCOUNTS_DATABASE_URI=mongodb://localhost:27017/hawk
# MongoDB URL for connecting to events database
MONGO_EVENTS_DATABASE_URI=mongodb://localhost:27017/hawk_events
# JWT secret key for projects tokens
JWT_SECRET=qwerty
# Event hash secret
EVENT_SECRET=hell
# @codex_bot webhook for reports
CODEX_BOT_WEBHOOK=
# address of prometheus pushgateway
PROMETHEUS_PUSHGATEWAY_URL=
# pushgateway push interval in ms
PROMETHEUS_PUSHGATEWAY_INTERVAL=10000
# project token for error catching
HAWK_CATCHER_TOKEN=
# Feature flags
## If true, Grouper worker will send messages about new events to Notifier worker
IS_NOTIFIER_WORKER_ENABLED=false