# Dimension47 Server Environment Variables # Database (PostgreSQL) DATABASE_URL="postgresql://postgres:postgres@localhost:5432/dimension47?schema=public" # JWT Authentication JWT_SECRET="change-this-to-a-secure-random-string" JWT_EXPIRES_IN="7d" # Server Configuration PORT=5000 NODE_ENV=development # CORS Origins (comma separated, must include frontend dev server port) CORS_ORIGINS="http://localhost:3000,http://localhost:5173,http://localhost:5175" # Claude API (for translations) ANTHROPIC_API_KEY="" # File Upload UPLOAD_DIR="./uploads" MAX_FILE_SIZE=10485760