20 lines
382 B
Plaintext
20 lines
382 B
Plaintext
# Environment Variables for Backend
|
|
# Copy this file to .env and fill in your values
|
|
|
|
# Server
|
|
PORT=3000
|
|
NODE_ENV=development
|
|
|
|
# Database
|
|
DATABASE_URL="postgresql://user:password@localhost:5432/skyartshop?schema=public"
|
|
|
|
# JWT
|
|
JWT_SECRET=your-super-secret-jwt-key-change-this-in-production
|
|
JWT_EXPIRES_IN=7d
|
|
|
|
# CORS
|
|
CORS_ORIGIN=http://localhost:5173
|
|
|
|
# Upload
|
|
MAX_FILE_SIZE=5242880
|