-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.local
41 lines (34 loc) · 920 Bytes
/
.env.local
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
# PostgreSQL
POSTGRES_HOST=localhost
POSTGRES_DB=mfl
POSTGRES_USER=mfluser
POSTGRES_PASSWORD=mflpassword
POSTGRES_PORT=5432
# JWT
JWT_SECRET=your_secret_here
JWT_ACCESS_EXPIRATION=3600000
JWT_REFRESH_EXPIRATION=31556952000
# Email Verification
VERIFICATION_TOKEN_TTL=86400000
VERIFICATION_TOKEN_LENGTH=40
# Password Reset
PASSWORD_RESET_TOKEN_TTL=604800000
PASSWORD_RESET_TOKEN_LENGTH=60
# Minio
MINIO_HOST=http://localhost
MINIO_BUCKET_NAME=mfl
MINIO_ROOT_USER=mfluser
MINIO_ROOT_PASSWORD=mflpassword
MINIO_API_PORT=9000
MINIO_CONSOLE_PORT=9001
# Mailer Configuration
MAIL_ADDRESS=0.0.0.0
MAIL_PORT=1025
MAIL_USERNAME=your@username
MAIL_PASSWORD=your_password
# Vendor staff
VENDOR_PATH=vendor
# Client
CLIENT_HOST=http://localhost:5000
CONFIRM_USER_LINK_TEMPLATE=http://localhost:5000/auth/confirm?confirmation_token=
PASSWORD_RESET_LINK_TEMPLATE=http://localhost:5000/auth/reset-password?password_reset_token=