Spaces:
Running
Running
File size: 707 Bytes
f78b36a 0addeca f3df641 | 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 | # Application
NODE_ENV=development
PORT=3000
# Database (PostgreSQL) - Prisma Connection String
DATABASE_URL="postgresql://postgres:your_password_here@localhost:5432/maternal_health?schema=public"
# JWT Authentication
JWT_SECRET=your_jwt_secret_here_change_in_production
JWT_EXPIRATION=1h
JWT_REFRESH_SECRET=your_refresh_secret_here_change_in_production
JWT_REFRESH_EXPIRATION=7d
# Frontend Configuration
FRONTEND_URL=http://localhost:8081
# Email Configuration (SMTP)
SMTP_HOST=smtp.gmail.com
SMTP_PORT=587
SMTP_USER=your-email@gmail.com
SMTP_PASS=your-app-password
SMTP_FROM=MaternAlert <no-reply@maternalert.com>
SUPPORT_EMAIL=support@maternalert.com.ng
GEOAPIFY_API_KEY=****************************
|