# WEXTS Environment Variables # Copy this file to .env and update values # JWT Authentication JWT_SECRET=your-super-secret-jwt-key-change-in-production JWT_EXPIRES_IN=7d # Database (Local Development - SQLite) DATABASE_URL="file:./apps/api/dev.db" # Database (Production - PostgreSQL) # DATABASE_URL="postgresql://user:password@host:5432/dbname" # DIRECT_URL="postgresql://user:password@host:5432/dbname" # Server PORT=3000 NODE_ENV=development