22 lines
475 B
Bash
22 lines
475 B
Bash
# Database
|
|
DATABASE_URL=postgresql://postgres:password@localhost:5432/harats_booking
|
|
|
|
# JWT
|
|
JWT_SECRET=your-super-secret-jwt-key-change-in-production
|
|
JWT_REFRESH_SECRET=your-super-secret-refresh-key-change-in-production
|
|
JWT_EXPIRES_IN=15m
|
|
JWT_REFRESH_EXPIRES_IN=7d
|
|
|
|
# Server
|
|
PORT=3001
|
|
NODE_ENV=development
|
|
|
|
# Client
|
|
VITE_API_URL=http://localhost:3001/api
|
|
|
|
# Email (Nodemailer)
|
|
SMTP_HOST=smtp.gmail.com
|
|
SMTP_PORT=587
|
|
SMTP_USER=your-email@gmail.com
|
|
SMTP_PASS=your-app-password
|