18 lines
548 B
Bash
18 lines
548 B
Bash
# Server Configuration
|
|
PORT=3000
|
|
NODE_ENV=development
|
|
|
|
# Database Configuration (PostgreSQL + Prisma)
|
|
DATABASE_URL="postgresql://postgres:postgres@localhost:5432/cors_di_app?schema=public"
|
|
|
|
# JWT Configuration
|
|
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production
|
|
JWT_EXPIRES_IN=7d
|
|
|
|
# Ethereal Email Configuration (https://ethereal.email/create)
|
|
ETHEREAL_USER=your-ethereal-user@ethereal.email
|
|
ETHEREAL_PASS=your-ethereal-password
|
|
|
|
# CORS Configuration (comma-separated origins)
|
|
ALLOWED_ORIGINS=http://localhost:3000,http://localhost:3001
|