-
Notifications
You must be signed in to change notification settings - Fork 4
/
.env
45 lines (33 loc) · 1.38 KB
/
.env
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
###################### Transport configuration #########################
# Transport connection DSN (rabbitMQ)
TRANSPORT_CONNECTION_DSN=amqp://admin:admin123@localhost
# Topic name (Exchange name for amqp)
TRANSPORT_TOPIC=demo
# Queue list
TRANSPORT_QUEUE=demo.messages
# Routing key for TRANSPORT_TOPIC_LIST and TRANSPORT_QUEUE_LIST
TRANSPORT_ROUTING_KEY=demo
SCHEDULER_TOPIC=scheduler
###################### Database configuration ##########################
# Database connection DSN
# example for inMemory: sqlite:///:memory:
# for async postgresql: pgsql://user:password@host:port/database
DATABASE_CONNECTION_DSN=pgsql://demo:123456789@localhost/demo
###################### Publisher settings ##############################
# Topic (Exchange name for amqp)
SENDER_DESTINATION_TOPIC=demo
# Routing key for specified topic
SENDER_DESTINATION_TOPIC_ROUTING_KEY=demo
###################### Application settings ############################
# Application environment
# available choices: testing, dev, prod
APP_ENVIRONMENT=dev
# Application entry point name
APP_ENTRY_POINT_NAME=demo
########### Logs
# Logging level
# At the debug level, information about dispatching / sending messages will be logged
# At the info level, records made within the context of the task execution will be logged
LOG_LEVEL=debug
# Is it necessary to highlight the logging levels when displayed in stdOut
AMP_LOG_COLOR=1