-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
45 lines (37 loc) · 1.48 KB
/
.env.example
File metadata and controls
45 lines (37 loc) · 1.48 KB
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
# Application
NODE_ENV=development
PORT=8000
# Database
DATABASE_URL="postgresql://username:password@localhost:5432/zendoc_db"
DIRECT_URL="postgresql://username:password@localhost:5432/zendoc_db"
# JWT Configuration
JWT_ACCESS_TOKEN_SECRET=your_access_token_secret
JWT_ACCESS_TOKEN_EXPIRES_IN=1d
JWT_REFRESH_TOKEN_SECRET=your_refresh_token_secret
JWT_REFRESH_TOKEN_EXPIRES_IN=30d
JWT_RESET_PASS_SECRET=your_reset_password_secret
JWT_RESET_PASS_EXPIRES_IN=15m
RESET_PASS_LINK=http://localhost:3000/reset-password
# Email Configuration
SENDER_EMAIL=your_email@gmail.com
SENDER_APP_PASS=your_app_password
# SSL Commerce Payment Gateway
SSL_STORE_ID=your_store_id
SSL_STORE_PASS=your_store_password
SSL_SUCCESS_URL=http://localhost:3000/payment/success
SSL_CANCEL_URL=http://localhost:3000/payment/cancel
SSL_FAIL_URL=http://localhost:3000/payment/fail
SSL_PAYMENT_API=https://sandbox.sslcommerz.com/gwprocess/v4/api.php
SSL_VALIDATION_API=https://sandbox.sslcommerz.com/validator/api/validationserverAPI.php
# Cloudinary Configuration
CLOUDINARY_CLOUD_NAME=your_cloud_name
CLOUDINARY_API_KEY=your_api_key
CLOUDINARY_API_SECRET=your_api_secret
# Super Admin Configuration
SUPER_ADMIN_EMAIL=admin@zendoc.com
SUPER_ADMIN_PASSWORD=your_secure_password
SUPER_ADMIN_NAME="Super Admin"
SUPER_ADMIN_PHONE=+1234567890
# Frontend URLs
PRO_APP_URL=https://your-production-url.com
DEV_APP_URL=http://localhost:3000