-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
37 lines (33 loc) · 1.01 KB
/
.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
# ----------------------------------------
## App
# ----------------------------------------
APP_PORT=3000
JWT_SECRET="secret"
JWT_EXPIRES_IN="1h"
# ----------------------------------------
## DB connection
# ----------------------------------------
DATABASE_CONNECTION="postgres"
DATABASE_HOST="127.0.0.1"
DATABASE_PORT="5432"
DATABASE_USERNAME="postgres"
DATABASE_PASSWORD="postgres"
DATABASE_NAME="postgres"
# ----------------------------------------
## Swagger
# ----------------------------------------
SWAGGER_URL="/api-docs"
API_AUTH_USER="admin"
API_AUTH_PASSWORD="admin"
# ----------------------------------------
## AWS Logger
# ----------------------------------------
AWS_LOG_GROUP_NAME="YOUR_LOG_GROUP_NAME"
AWS_LOG_STREAM_NAME="YOUR_LOG_STREAM_NAME"
AWS_LOG_ACCESS_KEY_ID="YOUR_KEY_ID"
AWS_LOG_SECRET_ACCESS_KEY="YOUR_SECRET_ACCESS_KEY"
AWS_LOG_REGION="YOUR_REGION"
# ----------------------------------------
## Payment
# ----------------------------------------
MOCK_PAYMENT_API_URL="http://localhost:8000/payment"