Files
SkyArtShop/backend/.env.example
Local Server 1919f6f8bb updateweb
2026-01-01 22:24:30 -06:00

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