-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (29 loc) · 893 Bytes
/
Copy path.env.example
File metadata and controls
33 lines (29 loc) · 893 Bytes
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
# Server Configuration
PORT=3000
NODE_ENV=development
FRONT_END_URL=http://localhost:3001
# Security
SECRET=your_jwt_secret_key_here
API_KEY=your_api_key_here
# Database Configuration
DB_URL=postgresql://username:password@host:port/database?sslmode=require
DB_HOST=your_database_host
DB_PORT=5432
DB_USERNAME=your_database_username
DB_PWD=your_database_password
DB_NAME=your_database_name
# Email Configuration
EMAIL_HOST=smtp.gmail.com
EMAIL_PORT=587
EMAIL_SECURE=false
EMAIL_USER=your_email@gmail.com
EMAIL_FROM="Your App Name" <your_email@gmail.com>
EMAIL_PASS=your_app_specific_password
EMAIL_POOL=true
EMAIL_MAX_CONNECTIONS=5
EMAIL_MAX_MESSAGES=100
# Paystack Configuration
PAYSTACK_BASE_URL=https://api.paystack.co
PAYSTACK_CALLBACK_URL=http://localhost:3001/create-account/subscription-success
PAYSTACK_PUBLIC_KEY=pk_test_your_public_key
PAYSTACK_SECRET_KEY=sk_test_your_secret_key