-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env.test
40 lines (27 loc) · 1.06 KB
/
.env.test
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
# Log level. Available: error,warn,info,versobe,debug,silly. See more https://github.com/winstonjs/winston#logging
LOG_LEVEL=error
# MongoDB URL for connecting to accounts database
MONGO_ACCOUNTS_DATABASE_URI=mongodb://127.0.0.1:55010/hawk
# MongoDB URL for connecting to events database
MONGO_EVENTS_DATABASE_URI=mongodb://127.0.0.1:55010/hawk
# 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=
# Feature flags
## If true, Grouper worker will send messages about new events to Notifier worker
IS_NOTIFIER_WORKER_ENABLED=false
# Endpoint to the accounting API
ACCOUNTING_API_ENDPOINT=http://localhost:3999/graphql
# Notify URL for sending Telegram notifications
REPORT_NOTIFY_URL=http://mock.com/
# Url for connecting to Redis
REDIS_URL=redis://localhost:6379