generated from async-devil/nestjs-react-mongodb-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
44 lines (27 loc) · 772 Bytes
/
.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
# RabbitMQ connection information
RMQ_HOST="rabbitmq"
RMQ_PORT=5672
# default user credentials
RMQ_USER="root"
RMQ_PASS="toor"
# PostreSQL connection information
POSTGRES_DB="money-tracker"
POSTGRES_USER="root"
POSTGRES_PASS="toor"
# pgAdmin default credentials
PGADMIN_EMAIL="root@root.com"
PGADMIN_PASS="toor"
# clients service
CLIENTS_SERVICE_QUEUE="clients_queue"
# accounts service
ACCOUNTS_SERVICE_QUEUE="accounts_queue"
# transactions service
TRANSACTIONS_SERVICE_QUEUE="transactions_queue"
# categories service
CATEGORIES_SERVICE_QUEUE="categories_queue"
# auth service
AUTH_SERVICE_QUEUE="auth_queue"
# JWT default credentials
ACCESS_TOKEN_SECRET="SECRET_KEY"
ACCESS_TOKEN_EXPIRE=1800 # 30m in seconds
REFRESH_TOKEN_EXPIRE=432000 # 5d in seconds